summaryrefslogtreecommitdiff
path: root/include/vcl/abstdlg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-05-29 17:24:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-05-30 08:40:20 +0200
commit57722dfc48d79986aafe6874875fa20827c0136e (patch)
treef95791fad7ade7c1fb484ceef04c02db5a31e290 /include/vcl/abstdlg.hxx
parent86555baa2b0e7af2e1ac9f2af40781de91708375 (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 'include/vcl/abstdlg.hxx')
-rw-r--r--include/vcl/abstdlg.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/vcl/abstdlg.hxx b/include/vcl/abstdlg.hxx
index 955000e47fbd..f05fe4c7de2b 100644
--- a/include/vcl/abstdlg.hxx
+++ b/include/vcl/abstdlg.hxx
@@ -35,6 +35,7 @@
namespace vcl { class Window; }
class Dialog;
class Bitmap;
+class BitmapEx;
namespace weld
{
class DialogController;
@@ -74,7 +75,7 @@ public:
// Screenshot interface
virtual std::vector<OString> getAllPageUIXMLDescriptions() const;
virtual bool selectPageByUIXMLDescription(const OString& rUIXMLDescription);
- virtual Bitmap createScreenshot() const;
+ virtual BitmapEx createScreenshot() const;
virtual OString GetScreenshotId() const { return OString(); };
};