diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-05-29 17:24:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-05-30 08:40:20 +0200 |
commit | 57722dfc48d79986aafe6874875fa20827c0136e (patch) | |
tree | f95791fad7ade7c1fb484ceef04c02db5a31e290 /sc/source/ui/attrdlg | |
parent | 86555baa2b0e7af2e1ac9f2af40781de91708375 (diff) |
use BitmapEx in the screenshot stuff
part of the process of moving Bitmap usage to BitmapEx
Change-Id: I4f02f8aa60d19a3639d623a998491447adf79e15
Reviewed-on: https://gerrit.libreoffice.org/55031
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/attrdlg')
-rw-r--r-- | sc/source/ui/attrdlg/scdlgfact.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/attrdlg/scdlgfact.hxx b/sc/source/ui/attrdlg/scdlgfact.hxx index 722684d30c95..dd56b7f9a712 100644 --- a/sc/source/ui/attrdlg/scdlgfact.hxx +++ b/sc/source/ui/attrdlg/scdlgfact.hxx @@ -68,7 +68,7 @@ public: \ virtual bool StartExecuteAsync(VclAbstractDialog::AsyncContext &rCtx) override; \ std::vector<OString> getAllPageUIXMLDescriptions() const override; \ bool selectPageByUIXMLDescription(const OString& rUIXMLDescription) override; \ - virtual Bitmap createScreenshot() const override; \ + virtual BitmapEx createScreenshot() const override; \ virtual OString GetScreenshotId() const override; \ #define IMPL_ABSTDLG_BASE(Class) \ @@ -91,7 +91,7 @@ bool Class::selectPageByUIXMLDescription(const OString& rUIXMLDescription) \ { \ return pDlg->selectPageByUIXMLDescription(rUIXMLDescription); \ } \ -Bitmap Class::createScreenshot() const \ +BitmapEx Class::createScreenshot() const \ { \ return pDlg->createScreenshot(); \ } \ |