summaryrefslogtreecommitdiff
path: root/include/vcl/fixed.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-05-29 21:09:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-05-30 08:40:05 +0200
commit86555baa2b0e7af2e1ac9f2af40781de91708375 (patch)
tree468525116f88009c15c5ffeb80e16fa9a517b496 /include/vcl/fixed.hxx
parent7873bba6c1e5de580ef28d0ecf68d154dd57e726 (diff)
Bitmap->BitmapEx in FixedBitmap
Change-Id: I0e409beb0d046d927b6a0c1987abec42df76727d Reviewed-on: https://gerrit.libreoffice.org/55032 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/fixed.hxx')
-rw-r--r--include/vcl/fixed.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/fixed.hxx b/include/vcl/fixed.hxx
index 49fdef75ddef..d1c361567bcf 100644
--- a/include/vcl/fixed.hxx
+++ b/include/vcl/fixed.hxx
@@ -22,7 +22,7 @@
#include <tools/solar.h>
#include <vcl/dllapi.h>
-#include <vcl/bitmap.hxx>
+#include <vcl/bitmapex.hxx>
#include <vcl/ctrl.hxx>
#include <vcl/edit.hxx>
#include <vcl/image.hxx>
@@ -121,7 +121,7 @@ public:
class VCL_DLLPUBLIC FixedBitmap : public Control
{
private:
- Bitmap maBitmap;
+ BitmapEx maBitmap;
using Control::ImplInitSettings;
using Window::ImplInit;
@@ -140,7 +140,7 @@ public:
virtual void StateChanged( StateChangedType nType ) override;
virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
- void SetBitmap( const Bitmap& rBitmap );
+ void SetBitmap( const BitmapEx& rBitmap );
using OutputDevice::GetBitmap;
};