diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-09-11 12:51:37 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-09-11 12:51:37 +0000 |
commit | 1355bf7192f0135ea9cc92018563e2d5465bf789 (patch) | |
tree | 630ba938f0cc3e248796204542f8c871fe2aea1b /stoc/source/invocation | |
parent | 6f81f4bc8e2ab90467754be54d18eddb7ba0e00f (diff) |
#92075#: exception specifications
Diffstat (limited to 'stoc/source/invocation')
-rw-r--r-- | stoc/source/invocation/invocation.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stoc/source/invocation/invocation.cxx b/stoc/source/invocation/invocation.cxx index a6433de36578..463c7731ce22 100644 --- a/stoc/source/invocation/invocation.cxx +++ b/stoc/source/invocation/invocation.cxx @@ -2,9 +2,9 @@ * * $RCSfile: invocation.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: dbo $ $Date: 2001-07-27 10:29:52 $ + * last change: $Author: hr $ $Date: 2001-09-11 13:48:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -194,7 +194,7 @@ public: throw( RuntimeException); // Methoden von XMaterialHolder - virtual Any SAL_CALL getMaterial(void); + virtual Any SAL_CALL getMaterial(void) throw(RuntimeException); // ? XTool virtual void SAL_CALL setMaterial( const Any& rMaterial ); @@ -412,7 +412,7 @@ Any SAL_CALL Invocation_Impl::queryInterface( const Type & aType ) //-------------------------------------------------------------------------------------------------- -Any Invocation_Impl::getMaterial(void) +Any Invocation_Impl::getMaterial(void) throw(RuntimeException) { // AB, 12.2.1999 Sicherstellen, dass das Material wenn moeglich // aus der direkten Invocation bzw. von der Introspection geholt |