diff options
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/bitmapex.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/bitmapex.hxx b/include/vcl/bitmapex.hxx index 7ec4dbf7d3c0..45f54d016a74 100644 --- a/include/vcl/bitmapex.hxx +++ b/include/vcl/bitmapex.hxx @@ -67,7 +67,7 @@ public: const Bitmap& GetBitmap() const; bool IsAlpha() const; - AlphaMask GetAlphaMask() const; + const AlphaMask & GetAlphaMask() const { return maAlphaMask; } const Size& GetSizePixel() const { return maBitmapSize; } void SetSizePixel(const Size& rNewSize); @@ -462,7 +462,7 @@ private: void loadFromIconTheme( const OUString& rIconName ); Bitmap maBitmap; - Bitmap maAlphaMask; + AlphaMask maAlphaMask; Size maBitmapSize; }; |