diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-24 10:17:19 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-24 10:17:19 +0000 |
commit | 61b32974a03f23a2784e4f42e024ab3a06045352 (patch) | |
tree | 6203780d7e07d825633cfafcbd98db24814b136d /xmlhelp/source | |
parent | 33f720bd981cd4f123e016cd7738e125e7f5bd4d (diff) |
#92924#: exception specifications
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/inputstream.cxx | 4 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/resultsetbase.cxx | 12 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.cxx | 12 |
3 files changed, 14 insertions, 14 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/inputstream.cxx b/xmlhelp/source/cxxhelp/provider/inputstream.cxx index a50ded7c0ddf..23a4d3c1926b 100644 --- a/xmlhelp/source/cxxhelp/provider/inputstream.cxx +++ b/xmlhelp/source/cxxhelp/provider/inputstream.cxx @@ -44,7 +44,7 @@ XInputStream_impl::queryInterface( void SAL_CALL XInputStream_impl::acquire( void ) - throw( uno::RuntimeException ) + throw() { OWeakObject::acquire(); } @@ -53,7 +53,7 @@ XInputStream_impl::acquire( void SAL_CALL XInputStream_impl::release( void ) - throw( uno::RuntimeException ) + throw() { OWeakObject::release(); } diff --git a/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx b/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx index 9b49bac28ef5..9c67b08f4e4d 100644 --- a/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx +++ b/xmlhelp/source/cxxhelp/provider/resultsetbase.cxx @@ -2,9 +2,9 @@ * * $RCSfile: resultsetbase.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: abi $ $Date: 2001-09-28 15:01:59 $ + * last change: $Author: hr $ $Date: 2001-10-24 11:17:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -121,7 +121,7 @@ ResultSetBase::~ResultSetBase() void SAL_CALL ResultSetBase::acquire( void ) - throw( uno::RuntimeException ) + throw() { OWeakObject::acquire(); } @@ -130,7 +130,7 @@ ResultSetBase::acquire( void SAL_CALL ResultSetBase::release( void ) - throw( uno::RuntimeException ) + throw() { OWeakObject::release(); } @@ -493,14 +493,14 @@ public: } void SAL_CALL acquire( void ) - throw( uno::RuntimeException ) + throw() { OWeakObject::acquire(); } void SAL_CALL release( void ) - throw( uno::RuntimeException ) + throw() { OWeakObject::release(); } diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx index b7e64886890c..600e99e145a2 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx @@ -2,9 +2,9 @@ * * $RCSfile: urlparameter.cxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.24 $ * - * last change: $Author: abi $ $Date: 2001-10-05 14:38:57 $ + * last change: $Author: hr $ $Date: 2001-10-24 11:17:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -389,8 +389,8 @@ public: ~InputStreamTransformer(); virtual Any SAL_CALL queryInterface( const Type& rType ) throw( RuntimeException ); - virtual void SAL_CALL acquire( void ) throw( RuntimeException ); - virtual void SAL_CALL release( void ) throw( RuntimeException ); + virtual void SAL_CALL acquire( void ) throw(); + virtual void SAL_CALL release( void ) throw(); virtual sal_Int32 SAL_CALL readBytes( Sequence< sal_Int8 >& aData,sal_Int32 nBytesToRead ) throw( NotConnectedException, @@ -887,14 +887,14 @@ Any SAL_CALL InputStreamTransformer::queryInterface( const Type& rType ) throw( -void SAL_CALL InputStreamTransformer::acquire( void ) throw( RuntimeException ) +void SAL_CALL InputStreamTransformer::acquire( void ) throw() { OWeakObject::acquire(); } -void SAL_CALL InputStreamTransformer::release( void ) throw( RuntimeException ) +void SAL_CALL InputStreamTransformer::release( void ) throw() { OWeakObject::release(); } |