diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2001-09-12 16:25:32 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2001-09-12 16:25:32 +0000 |
commit | ed3593f760cdf412bff178c282bdeb8ad4b54200 (patch) | |
tree | e31f5797ca6197bdd97dbb4a74301c40f731e8d8 /forms | |
parent | 72336093087136e533672e130228a98159ee3112 (diff) |
#92075# exception specification
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/ImageButton.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/forms/source/component/ImageButton.cxx b/forms/source/component/ImageButton.cxx index 6cd5b46a7..b2f4e09f7 100644 --- a/forms/source/component/ImageButton.cxx +++ b/forms/source/component/ImageButton.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ImageButton.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: fs $ $Date: 2001-04-02 10:28:06 $ + * last change: $Author: vg $ $Date: 2001-09-12 17:25:32 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -157,13 +157,13 @@ void OImageButtonModel::fillProperties( } //------------------------------------------------------------------------------ -::rtl::OUString OImageButtonModel::getServiceName() +::rtl::OUString OImageButtonModel::getServiceName() throw ( ::com::sun::star::uno::RuntimeException) { return FRM_COMPONENT_IMAGEBUTTON; // old (non-sun) name for compatibility ! } //------------------------------------------------------------------------------ -void OImageButtonModel::write(const Reference<XObjectOutputStream>& _rxOutStream) +void OImageButtonModel::write(const Reference<XObjectOutputStream>& _rxOutStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException) { OControlModel::write(_rxOutStream); @@ -178,7 +178,7 @@ void OImageButtonModel::write(const Reference<XObjectOutputStream>& _rxOutStream } //------------------------------------------------------------------------------ -void OImageButtonModel::read(const Reference<XObjectInputStream>& _rxInStream) +void OImageButtonModel::read(const Reference<XObjectInputStream>& _rxInStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException) { OControlModel::read(_rxInStream); @@ -278,7 +278,7 @@ Any SAL_CALL OImageButtonControl::queryAggregation(const Type& _rType) throw (Ru } //------------------------------------------------------------------------------ -void OImageButtonControl::mousePressed(const MouseEvent& e) +void OImageButtonControl::mousePressed(const MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException) { ////////////////////////////////////////////////////////////////////// // Nur linke Maustaste |