summaryrefslogtreecommitdiff
path: root/stoc/source/inspect
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-09-11 12:51:37 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-09-11 12:51:37 +0000
commit1355bf7192f0135ea9cc92018563e2d5465bf789 (patch)
tree630ba938f0cc3e248796204542f8c871fe2aea1b /stoc/source/inspect
parent6f81f4bc8e2ab90467754be54d18eddb7ba0e00f (diff)
#92075#: exception specifications
Diffstat (limited to 'stoc/source/inspect')
-rw-r--r--stoc/source/inspect/introspection.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/stoc/source/inspect/introspection.cxx b/stoc/source/inspect/introspection.cxx
index 92ade103c323..96331b72b58e 100644
--- a/stoc/source/inspect/introspection.cxx
+++ b/stoc/source/inspect/introspection.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: introspection.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: pl $ $Date: 2001-05-11 11:48:13 $
+ * last change: $Author: hr $ $Date: 2001-09-11 13:48:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -929,7 +929,7 @@ public:
throw( IllegalTypeException, RuntimeException );
// Methoden von XMaterialHolder
- virtual Any SAL_CALL getMaterial(void);
+ virtual Any SAL_CALL getMaterial(void) throw(RuntimeException);
// Methoden von XExactName
virtual OUString SAL_CALL getExactName( const OUString& rApproximateName ) throw( RuntimeException );
@@ -1451,7 +1451,7 @@ Reference<XInterface> SAL_CALL ImplIntrospectionAccess::queryAdapter( const Type
}
// Methoden von XMaterialHolder
-Any ImplIntrospectionAccess::getMaterial(void)
+Any ImplIntrospectionAccess::getMaterial(void) throw(RuntimeException)
{
return maInspectedObject;
}