diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/test/screenshot_test.hxx | 2 | ||||
-rw-r--r-- | include/vcl/abstdlg.hxx | 3 | ||||
-rw-r--r-- | include/vcl/dialog.hxx | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/include/test/screenshot_test.hxx b/include/test/screenshot_test.hxx index de773fcf682e..7bf8874a1361 100644 --- a/include/test/screenshot_test.hxx +++ b/include/test/screenshot_test.hxx @@ -35,7 +35,7 @@ private: private: /// helpers - void implSaveScreenshot(const Bitmap& rScreenshot, const OString& rScreenshotId); + void implSaveScreenshot(const BitmapEx& rScreenshot, const OString& rScreenshotId); void saveScreenshot(VclAbstractDialog const & rDialog); void saveScreenshot(Dialog& rDialog); 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(); }; }; diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx index 36f88b8feb45..43f45955a69f 100644 --- a/include/vcl/dialog.hxx +++ b/include/vcl/dialog.hxx @@ -129,7 +129,7 @@ public: // Screenshot interface virtual std::vector<OString> getAllPageUIXMLDescriptions() const; virtual bool selectPageByUIXMLDescription(const OString& rUIXMLDescription); - Bitmap createScreenshot(); + BitmapEx createScreenshot(); virtual short Execute(); bool IsInExecute() const { return mbInExecute; } |