summaryrefslogtreecommitdiff
path: root/forms/source/component/ImageButton.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 11:51:34 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 11:51:34 +0000
commit3fa9d7b4daaf9e8edfc1c52d545e7f6f0ec237a7 (patch)
tree357c60a1ebaec03be74004910b42e858db32b240 /forms/source/component/ImageButton.hxx
parent7b937596715fa70ffaf3afad406e51ebb6174fe0 (diff)
INTEGRATION: CWS warnings01 (1.7.68); FILE MERGED
2006/03/15 07:55:35 fs 1.7.68.2: #i57457# warning-free code (unxsols4) 2006/03/14 15:20:27 fs 1.7.68.1: #i57457# warning-free code
Diffstat (limited to 'forms/source/component/ImageButton.hxx')
-rw-r--r--forms/source/component/ImageButton.hxx19
1 files changed, 11 insertions, 8 deletions
diff --git a/forms/source/component/ImageButton.hxx b/forms/source/component/ImageButton.hxx
index b9a6d5dc7..ba15eacb5 100644
--- a/forms/source/component/ImageButton.hxx
+++ b/forms/source/component/ImageButton.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ImageButton.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 22:44:14 $
+ * last change: $Author: hr $ $Date: 2006-06-19 12:51:34 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -97,7 +97,7 @@ protected:
public:
OImageButtonControl(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory>& _rxFactory);
-// ::com::sun::star::lang::XServiceInfo
+ // XServiceInfo
IMPLEMENTATION_NAME(OImageButtonControl);
virtual StringSequence SAL_CALL getSupportedServiceNames() throw();
@@ -105,15 +105,18 @@ public:
DECLARE_UNO3_AGG_DEFAULTS(OImageButtonControl, OClickableImageBaseControl);
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation(const ::com::sun::star::uno::Type& _rType) throw(::com::sun::star::uno::RuntimeException);
-// ::com::sun::star::lang::XEventListener
+ // XEventListener
virtual void SAL_CALL disposing(const ::com::sun::star::lang::EventObject& _rSource) throw(::com::sun::star::uno::RuntimeException)
{ OControl::disposing(_rSource); }
-// ::com::sun::star::awt::XMouseListener
+ // XMouseListener
virtual void SAL_CALL mousePressed(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException);
- virtual void SAL_CALL mouseReleased(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException) { }
- virtual void SAL_CALL mouseEntered(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException) { }
- virtual void SAL_CALL mouseExited(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException) { }
+ virtual void SAL_CALL mouseReleased(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException);
+ virtual void SAL_CALL mouseEntered(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException);
+ virtual void SAL_CALL mouseExited(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException);
+
+ // prevent method hiding
+ using OClickableImageBaseControl::disposing;
};
//.........................................................................