From 1e8cfca09b3c18957b9911170b83d66548a19279 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Thu, 27 Sep 2001 08:51:47 +0000
Subject: #65293#: exception specifications
---
ucbhelper/inc/ucbhelper/contentidentifier.hxx | 10 ++++------
ucbhelper/inc/ucbhelper/macros.hxx | 12 ++++++------
2 files changed, 10 insertions(+), 12 deletions(-)
(limited to 'ucbhelper/inc')
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(); \
}
--
cgit