summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-29 00:31:55 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-29 09:56:08 +0100
commitde82a40f84c69081a517617989c344ec9597cb45 (patch)
tree6b9c15c67b11db681e6e8417b62efdd0a98b013a /vcl
parent313332e76bd17c0a5a6bd67c0abc467877948a3a (diff)
callcatcher: drop various unused methods
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/vcl/fixed.hxx2
-rw-r--r--vcl/inc/vcl/imgctrl.hxx3
-rw-r--r--vcl/source/control/fixed.cxx15
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 )