diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2001-09-12 16:20:30 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2001-09-12 16:20:30 +0000 |
commit | 52acfe7da6bcc58e02d79cd1e958cb0dc25336f9 (patch) | |
tree | 337d3db42bb319e407986fac208b9a550702b4f5 /forms/source/component | |
parent | c8c2ab1bad0fc813ac6b082666a05f36f7fbe563 (diff) |
#92075# exception specification
Diffstat (limited to 'forms/source/component')
-rw-r--r-- | forms/source/component/ImageButton.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/forms/source/component/ImageButton.hxx b/forms/source/component/ImageButton.hxx index b1fdaf8b27fe..e649d28ead77 100644 --- a/forms/source/component/ImageButton.hxx +++ b/forms/source/component/ImageButton.hxx @@ -2,9 +2,9 @@ * * $RCSfile: ImageButton.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: oj $ $Date: 2000-11-23 08:48:15 $ + * last change: $Author: vg $ $Date: 2001-09-12 17:20:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -95,9 +95,9 @@ public: virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper(); // ::com::sun::star::io::XPersistObject - virtual ::rtl::OUString SAL_CALL getServiceName(); - virtual void SAL_CALL write(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream); - virtual void SAL_CALL read(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectInputStream>& _rxInStream); + virtual ::rtl::OUString SAL_CALL getServiceName() throw ( ::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL write(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL read(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectInputStream>& _rxInStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException); // OAggregationArrayUsageHelper virtual void fillProperties( @@ -134,10 +134,10 @@ public: { OControl::disposing(_rSource); } // ::com::sun::star::awt::XMouseListener - virtual void SAL_CALL mousePressed(const ::com::sun::star::awt::MouseEvent& e); - virtual void SAL_CALL mouseReleased(const ::com::sun::star::awt::MouseEvent& e) { } - virtual void SAL_CALL mouseEntered(const ::com::sun::star::awt::MouseEvent& e) { } - virtual void SAL_CALL mouseExited(const ::com::sun::star::awt::MouseEvent& e) { } + 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) { } }; //......................................................................... |