summaryrefslogtreecommitdiff
path: root/vcl/source/control/imgctrl.cxx
diff options
context:
space:
mode:
authorStephan Schäfer <ssa@openoffice.org>2002-03-05 08:20:36 +0000
committerStephan Schäfer <ssa@openoffice.org>2002-03-05 08:20:36 +0000
commit7511526a5bec4fefddfd5a6d1f95ed5de4369b4d (patch)
treeb2b451a579d83281ebc616f127def50fa06e2c93 /vcl/source/control/imgctrl.cxx
parent7f67710b006f00aa7833400f016c5c0c7f2ccf61 (diff)
#97021# support HC mode
Diffstat (limited to 'vcl/source/control/imgctrl.cxx')
-rw-r--r--vcl/source/control/imgctrl.cxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/vcl/source/control/imgctrl.cxx b/vcl/source/control/imgctrl.cxx
index ce7d091eaf1d..1e4e36457123 100644
--- a/vcl/source/control/imgctrl.cxx
+++ b/vcl/source/control/imgctrl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: imgctrl.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mt $ $Date: 2001-10-12 12:28:12 $
+ * last change: $Author: ssa $ $Date: 2002-03-05 09:19:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -128,3 +128,13 @@ void ImageControl::SetBitmap( const BitmapEx& rBmp )
maBmp = rBmp;
StateChanged( STATE_CHANGE_DATA );
}
+
+BOOL ImageControl::SetModeBitmap( const BitmapEx& rBitmap, BmpColorMode eMode )
+{
+ return FALSE;
+}
+
+const BitmapEx& ImageControl::GetModeBitmap( BmpColorMode eMode ) const
+{
+ return maBmp;
+}