diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-09-28 08:44:09 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-09-28 08:44:09 +0000 |
commit | 7c317f5dbbcbb8770e0ec1f33d23a8bb0078d36f (patch) | |
tree | 1907ba88cb19ad741bb79be70e6e2e626cc3f8cd | |
parent | 8054195b1af5bb44b0eae14c0c4a448f7888bee8 (diff) |
#65293#: exception specifications
-rw-r--r-- | toolkit/inc/toolkit/helper/listenermultiplexer.hxx | 8 | ||||
-rw-r--r-- | toolkit/inc/toolkit/helper/macros.hxx | 8 | ||||
-rw-r--r-- | toolkit/inc/toolkit/helper/unomemorystream.hxx | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/toolkit/inc/toolkit/helper/listenermultiplexer.hxx b/toolkit/inc/toolkit/helper/listenermultiplexer.hxx index 84f15e728eb9..eb9155f96f21 100644 --- a/toolkit/inc/toolkit/helper/listenermultiplexer.hxx +++ b/toolkit/inc/toolkit/helper/listenermultiplexer.hxx @@ -2,9 +2,9 @@ * * $RCSfile: listenermultiplexer.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:02:08 $ + * last change: $Author: hr $ $Date: 2001-09-28 09:44:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -151,8 +151,8 @@ public: // ::com::sun::star::uno::XInterface ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); - void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException) { mrContext.acquire(); } - void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException) { mrContext.release(); } + void SAL_CALL acquire() throw() { mrContext.acquire(); } + void SAL_CALL release() throw() { mrContext.release(); } }; diff --git a/toolkit/inc/toolkit/helper/macros.hxx b/toolkit/inc/toolkit/helper/macros.hxx index 9e07a047bc67..b9bf7ac833e6 100644 --- a/toolkit/inc/toolkit/helper/macros.hxx +++ b/toolkit/inc/toolkit/helper/macros.hxx @@ -2,9 +2,9 @@ * * $RCSfile: macros.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mt $ $Date: 2001-02-27 13:57:43 $ + * last change: $Author: hr $ $Date: 2001-09-28 09:44:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -169,8 +169,8 @@ class ClassName : public ListenerMultiplexerBase, public InterfaceName \ public: \ ClassName( ::cppu::OWeakObject& rSource ); \ ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); \ - void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException) { ListenerMultiplexerBase::acquire(); } \ - void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException) { ListenerMultiplexerBase::release(); } \ + void SAL_CALL acquire() throw() { ListenerMultiplexerBase::acquire(); } \ + void SAL_CALL release() throw() { ListenerMultiplexerBase::release(); } \ void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException); // ------------------------------------------------------------------------------------- diff --git a/toolkit/inc/toolkit/helper/unomemorystream.hxx b/toolkit/inc/toolkit/helper/unomemorystream.hxx index 29a40cd5501a..1cf5edee23fa 100644 --- a/toolkit/inc/toolkit/helper/unomemorystream.hxx +++ b/toolkit/inc/toolkit/helper/unomemorystream.hxx @@ -2,9 +2,9 @@ * * $RCSfile: unomemorystream.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:02:08 $ + * last change: $Author: hr $ $Date: 2001-09-28 09:44:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -97,8 +97,8 @@ public: // ::com::sun::star::uno::XInterface ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); - void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException) { OWeakObject::acquire(); } - void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException) { OWeakObject::release(); } + void SAL_CALL acquire() throw() { OWeakObject::acquire(); } + void SAL_CALL release() throw() { OWeakObject::release(); } // ::com::sun::star::io::XInputStream sal_Int32 SAL_CALL readBytes( ::com::sun::star::uno::Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead ) throw(::com::sun::star::io::NotConnectedException, ::com::sun::star::io::BufferSizeExceededException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException); |