summaryrefslogtreecommitdiff
path: root/framework/source/uielement/statusbar.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-07 13:32:37 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-07 13:32:37 +0000
commit7d8190fa1ad10b7d36ded139282f0a8542402216 (patch)
tree7c9f8e0656678637595d725e639a93c635ad9603 /framework/source/uielement/statusbar.cxx
parent9676fb7dadca448eaf2b5959db897b5deee25ff0 (diff)
INTEGRATION: CWS pages01_DEV300 (1.8.204); FILE MERGED
2007/12/10 08:19:07 fme 1.8.204.1: #i84413# SfxStatusBarControl::mouseButtonDown not called
Diffstat (limited to 'framework/source/uielement/statusbar.cxx')
-rw-r--r--framework/source/uielement/statusbar.cxx25
1 files changed, 23 insertions, 2 deletions
diff --git a/framework/source/uielement/statusbar.cxx b/framework/source/uielement/statusbar.cxx
index ba0b306ae776..bb9af63eb458 100644
--- a/framework/source/uielement/statusbar.cxx
+++ b/framework/source/uielement/statusbar.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: statusbar.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: obo $ $Date: 2006-09-16 14:24:14 $
+ * last change: $Author: kz $ $Date: 2008-03-07 14:32:23 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -100,4 +100,25 @@ void FrameworkStatusBar::DataChanged( const DataChangedEvent& rDCEvt )
m_pMgr->DataChanged( rDCEvt );
}
+void FrameworkStatusBar::MouseMove( const MouseEvent& rMEvt )
+{
+ StatusBar::MouseMove( rMEvt );
+ if ( m_pMgr )
+ m_pMgr->MouseMove( rMEvt );
+}
+
+void FrameworkStatusBar::MouseButtonDown( const MouseEvent& rMEvt )
+{
+ StatusBar::MouseButtonDown( rMEvt );
+ if ( m_pMgr )
+ m_pMgr->MouseButtonDown( rMEvt );
+}
+
+void FrameworkStatusBar::MouseButtonUp( const MouseEvent& rMEvt )
+{
+ StatusBar::MouseButtonUp( rMEvt );
+ if ( m_pMgr )
+ m_pMgr->MouseButtonUp( rMEvt );
+}
+
}