summaryrefslogtreecommitdiff
path: root/ucbhelper/inc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-09-27 08:51:47 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-09-27 08:51:47 +0000
commit1e8cfca09b3c18957b9911170b83d66548a19279 (patch)
tree79abc5a4118ae69c66d7d48f992c3f92f1dbfaa8 /ucbhelper/inc
parent999d783abaa5051be34761d4bef7c870a8eca8d1 (diff)
#65293#: exception specifications
Diffstat (limited to 'ucbhelper/inc')
-rw-r--r--ucbhelper/inc/ucbhelper/contentidentifier.hxx10
-rw-r--r--ucbhelper/inc/ucbhelper/macros.hxx12
2 files changed, 10 insertions, 12 deletions
diff --git a/ucbhelper/inc/ucbhelper/contentidentifier.hxx b/ucbhelper/inc/ucbhelper/contentidentifier.hxx
index 7886f47118aa..5e3b355b4af4 100644
--- a/ucbhelper/inc/ucbhelper/contentidentifier.hxx
+++ b/ucbhelper/inc/ucbhelper/contentidentifier.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: contentidentifier.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:03:37 $
+ * last change: $Author: hr $ $Date: 2001-09-27 09:48:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -111,11 +111,9 @@ public:
queryInterface( const com::sun::star::uno::Type & rType )
throw( com::sun::star::uno::RuntimeException );
virtual void SAL_CALL
- acquire()
- throw( com::sun::star::uno::RuntimeException );
+ acquire() throw();
virtual void SAL_CALL
- release()
- throw( com::sun::star::uno::RuntimeException );
+ release() throw();
// XTypeProvider
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL
diff --git a/ucbhelper/inc/ucbhelper/macros.hxx b/ucbhelper/inc/ucbhelper/macros.hxx
index d5f7c201ade8..586b8086a743 100644
--- a/ucbhelper/inc/ucbhelper/macros.hxx
+++ b/ucbhelper/inc/ucbhelper/macros.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: macros.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:03:37 $
+ * last change: $Author: hr $ $Date: 2001-09-27 09:46:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -98,10 +98,10 @@
throw( com::sun::star::uno::RuntimeException ); \
virtual void SAL_CALL \
acquire() \
- throw( com::sun::star::uno::RuntimeException ); \
+ throw(); \
virtual void SAL_CALL \
release() \
- throw( com::sun::star::uno::RuntimeException );
+ throw();
//=========================================================================
//
@@ -111,13 +111,13 @@
#define XINTERFACE_COMMON_IMPL( Class ) \
void SAL_CALL Class::acquire() \
- throw( com::sun::star::uno::RuntimeException ) \
+ throw() \
{ \
OWeakObject::acquire(); \
} \
\
void SAL_CALL Class::release() \
- throw( com::sun::star::uno::RuntimeException ) \
+ throw() \
{ \
OWeakObject::release(); \
}