summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorAndreas Bregas <ab@openoffice.org>2001-02-22 14:40:19 +0000
committerAndreas Bregas <ab@openoffice.org>2001-02-22 14:40:19 +0000
commitf5343df3732268811761bd1f01290fb40e7cc90e (patch)
treec6850f9fc631b041c1981a709296bca8ac9a4509 /basic
parent17dd6bfdde102e4de107317fc2567fb2787d09c1 (diff)
Exception specification corrected
Diffstat (limited to 'basic')
-rw-r--r--basic/source/classes/eventatt.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/basic/source/classes/eventatt.cxx b/basic/source/classes/eventatt.cxx
index 7c82e2732d53..b2d4754a3f99 100644
--- a/basic/source/classes/eventatt.cxx
+++ b/basic/source/classes/eventatt.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: eventatt.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: ab $ $Date: 2001-02-21 17:45:58 $
+ * last change: $Author: ab $ $Date: 2001-02-22 15:40:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -186,7 +186,8 @@ void BasicScriptListener_Impl::firing( const ScriptEvent& aScriptEvent ) throw (
firing_impl( aScriptEvent, NULL );
}
-Any BasicScriptListener_Impl::approveFiring( const ScriptEvent& aScriptEvent ) throw ( RuntimeException )
+Any BasicScriptListener_Impl::approveFiring( const ScriptEvent& aScriptEvent )
+ throw ( InvocationTargetException, RuntimeException )
{
Any aRetAny;
firing_impl( aScriptEvent, &aRetAny );
@@ -373,7 +374,8 @@ void DialogAllListener_Impl::firing( const AllEventObject& Event ) throw ( Runti
firing_impl( Event, NULL );
}
-Any DialogAllListener_Impl::approveFiring( const AllEventObject& Event ) throw ( RuntimeException )
+Any DialogAllListener_Impl::approveFiring( const AllEventObject& Event )
+ throw ( InvocationTargetException, RuntimeException )
{
Any aRetAny;
firing_impl( Event, &aRetAny );