summaryrefslogtreecommitdiff
path: root/include/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-06-01 10:05:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-01 20:12:18 +0200
commitc96d58cca2503fd257c3c742188af66075e194de (patch)
treeda6b75a8fdce10b6e7da23105ae09aac69e02c88 /include/filter
parentd098fb74df7c11bbfa8103ec8c7c89652b07bfc4 (diff)
use more BitmapEx in filter
Change-Id: I68fdad6a69a178df8c59c4272f1d8d0b2f101315 Reviewed-on: https://gerrit.libreoffice.org/55163 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/filter')
-rw-r--r--include/filter/msfilter/mstoolbar.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/filter/msfilter/mstoolbar.hxx b/include/filter/msfilter/mstoolbar.hxx
index 6b2f923247dd..5a7da86b37b5 100644
--- a/include/filter/msfilter/mstoolbar.hxx
+++ b/include/filter/msfilter/mstoolbar.hxx
@@ -19,7 +19,7 @@
#include <rtl/ustring.hxx>
#include <sal/types.h>
#include <tools/stream.hxx>
-#include <vcl/bitmap.hxx>
+#include <vcl/bitmapex.hxx>
namespace com { namespace sun { namespace star {
namespace beans { struct PropertyValue; }
@@ -156,7 +156,7 @@ class MSFILTER_DLLPUBLIC TBCBitMap : public TBBase
{
friend class TBCBSpecific; // #FIXME hacky access, need to fix
sal_Int32 cbDIB;
- Bitmap mBitMap;
+ BitmapEx mBitMap;
public:
TBCBitMap();
virtual ~TBCBitMap() override;
@@ -165,7 +165,7 @@ public:
virtual void Print( FILE* ) override;
#endif
// #FIXME Const-ness
- Bitmap& getBitMap() { return mBitMap;}
+ BitmapEx& getBitMap() { return mBitMap;}
};
class MSFILTER_DLLPUBLIC TBCMenuSpecific : public TBBase