diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-09-28 11:52:32 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-09-28 11:52:32 +0000 |
commit | 1a1f882ab8288a50203d1c2af7998294c3b97e78 (patch) | |
tree | 62bd170e85cba7c4e54a83db2fd7312805efb942 /svtools | |
parent | 53f2235d0cc7d8609361fe26d74a90bc75209ccd (diff) |
#65293#: exception specifications
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/unoimap.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svtools/source/uno/unoimap.cxx b/svtools/source/uno/unoimap.cxx index a9aea6d4b7c3..19525b564ecf 100644 --- a/svtools/source/uno/unoimap.cxx +++ b/svtools/source/uno/unoimap.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unoimap.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: hr $ $Date: 2001-09-12 08:52:20 $ + * last change: $Author: hr $ $Date: 2001-09-28 12:52:32 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -182,8 +182,8 @@ public: // XInterface virtual Any SAL_CALL queryAggregation( const Type & rType ) throw(RuntimeException); virtual Any SAL_CALL queryInterface( const Type & rType ) throw(RuntimeException); - virtual void SAL_CALL acquire() throw(RuntimeException); - virtual void SAL_CALL release() throw(RuntimeException); + virtual void SAL_CALL acquire() throw(); + virtual void SAL_CALL release() throw(); // XTypeProvider virtual Sequence< Type > SAL_CALL getTypes( ) throw(RuntimeException); @@ -417,12 +417,12 @@ Any SAL_CALL SvUnoImageMapObject::queryAggregation( const Type & rType ) return aAny; } -void SAL_CALL SvUnoImageMapObject::acquire() throw(uno::RuntimeException) +void SAL_CALL SvUnoImageMapObject::acquire() throw() { OWeakAggObject::acquire(); } -void SAL_CALL SvUnoImageMapObject::release() throw(uno::RuntimeException) +void SAL_CALL SvUnoImageMapObject::release() throw() { OWeakAggObject::release(); } |