summaryrefslogtreecommitdiff
path: root/forms/source/component/Button.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2001-09-12 10:00:55 +0000
committerVladimir Glazounov <vg@openoffice.org>2001-09-12 10:00:55 +0000
commitd6ac04c716eef2e19713fdf26c5d7ee80f8e536a (patch)
tree0d80c313c3e1903257ff127beab0f1931a6bc330 /forms/source/component/Button.cxx
parentac4e914f709109256f99beafdb1c537fd4d116e3 (diff)
#92075# exception specification
Diffstat (limited to 'forms/source/component/Button.cxx')
-rw-r--r--forms/source/component/Button.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/forms/source/component/Button.cxx b/forms/source/component/Button.cxx
index 3f2f7996156d..853d0a7872c4 100644
--- a/forms/source/component/Button.cxx
+++ b/forms/source/component/Button.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: Button.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: fs $ $Date: 2001-08-27 16:54:50 $
+ * last change: $Author: vg $ $Date: 2001-09-12 11:00:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -156,13 +156,13 @@ StringSequence OButtonModel::getSupportedServiceNames() throw()
}
//------------------------------------------------------------------------------
-::rtl::OUString OButtonModel::getServiceName()
+::rtl::OUString OButtonModel::getServiceName() throw ( ::com::sun::star::uno::RuntimeException)
{
return FRM_COMPONENT_COMMANDBUTTON; // old (non-sun) name for compatibility !
}
//------------------------------------------------------------------------------
-void OButtonModel::write(const Reference<XObjectOutputStream>& _rxOutStream)
+void OButtonModel::write(const Reference<XObjectOutputStream>& _rxOutStream) throw (::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException)
{
OImageModel::write(_rxOutStream);
@@ -176,7 +176,7 @@ void OButtonModel::write(const Reference<XObjectOutputStream>& _rxOutStream)
}
//------------------------------------------------------------------------------
-void OButtonModel::read(const Reference<XObjectInputStream>& _rxInStream)
+void OButtonModel::read(const Reference<XObjectInputStream>& _rxInStream) throw (::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException)
{
OImageModel::read(_rxInStream);
@@ -282,7 +282,7 @@ Any SAL_CALL OButtonControl::queryAggregation(const Type& _rType) throw (Runtime
// ActionListener
//------------------------------------------------------------------------------
-void OButtonControl::actionPerformed(const ActionEvent& rEvent)
+void OButtonControl::actionPerformed(const ActionEvent& rEvent) throw ( ::com::sun::star::uno::RuntimeException)
{
// Asynchron fuer starutil::URL-Button
sal_uInt32 n = Application::PostUserEvent( LINK(this, OButtonControl,OnClick) );