diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/vcl/fixed.hxx | 2 | ||||
-rw-r--r-- | vcl/inc/vcl/imgctrl.hxx | 3 | ||||
-rw-r--r-- | vcl/source/control/fixed.cxx | 15 |
3 files changed, 0 insertions, 20 deletions
diff --git a/vcl/inc/vcl/fixed.hxx b/vcl/inc/vcl/fixed.hxx index 3912f19e778a..769a61cd9212 100644 --- a/vcl/inc/vcl/fixed.hxx +++ b/vcl/inc/vcl/fixed.hxx @@ -144,8 +144,6 @@ public: void SetBitmap( const Bitmap& rBitmap ); using OutputDevice::GetBitmap; const Bitmap& GetBitmap() const { return maBitmap; } - sal_Bool SetModeBitmap( const Bitmap& rBitmap ); - const Bitmap& GetModeBitmap( ) const; }; // -------------- diff --git a/vcl/inc/vcl/imgctrl.hxx b/vcl/inc/vcl/imgctrl.hxx index ec8ed99c93bb..c52f825a3fde 100644 --- a/vcl/inc/vcl/imgctrl.hxx +++ b/vcl/inc/vcl/imgctrl.hxx @@ -59,9 +59,6 @@ public: protected: void ImplDraw( OutputDevice& rDev, sal_uLong nDrawFlags, const Point& rPos, const Size& rSize ) const; -private: - sal_Bool SetModeBitmap( const BitmapEx& rBitmap ); - const BitmapEx& GetModeBitmap( ) const; }; #endif // _SV_IMGCTRL_HXX diff --git a/vcl/source/control/fixed.cxx b/vcl/source/control/fixed.cxx index 514589d0660b..84ceb1495e8a 100644 --- a/vcl/source/control/fixed.cxx +++ b/vcl/source/control/fixed.cxx @@ -901,21 +901,6 @@ void FixedBitmap::SetBitmap( const Bitmap& rBitmap ) StateChanged( STATE_CHANGE_DATA ); } -// ----------------------------------------------------------------------- - -sal_Bool FixedBitmap::SetModeBitmap( const Bitmap& rBitmap ) -{ - SetBitmap( rBitmap ); - return sal_True; -} - -// ----------------------------------------------------------------------- - -const Bitmap& FixedBitmap::GetModeBitmap( ) const -{ - return maBitmap; -} - // ======================================================================= void FixedImage::ImplInit( Window* pParent, WinBits nStyle ) |