summaryrefslogtreecommitdiff
path: root/cppuhelper/test/testimplhelper.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-10-31 15:18:25 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-10-31 15:18:25 +0000
commit6d471000d5375c401295724709dca9f04e9e5e37 (patch)
tree472afed577420430efc79fa05ad499d812c6bef1 /cppuhelper/test/testimplhelper.cxx
parent854d7538e8285c84a97277d5aa586d55c33fb951 (diff)
#92951#
Diffstat (limited to 'cppuhelper/test/testimplhelper.cxx')
-rw-r--r--cppuhelper/test/testimplhelper.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/cppuhelper/test/testimplhelper.cxx b/cppuhelper/test/testimplhelper.cxx
index 2642466105cc..f7bc7d5fb5f3 100644
--- a/cppuhelper/test/testimplhelper.cxx
+++ b/cppuhelper/test/testimplhelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testimplhelper.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: dbo $ $Date: 2001-09-04 09:03:09 $
+ * last change: $Author: hr $ $Date: 2001-10-31 16:18:25 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -120,11 +120,11 @@ struct TestImpl : public ImplHelper4< CA, DBA, FE, G >
virtual ~TestImpl()
{ OSL_TRACE( "> TestImpl dtor called... <\n" ); }
- virtual Any SAL_CALL queryInterface( const Type & rType ) throw(::com::sun::star::uno::RuntimeException)
+ virtual Any SAL_CALL queryInterface( const Type & rType ) throw(RuntimeException)
{ return ImplHelper4< CA, DBA, FE, G >::queryInterface( rType ); }
- virtual void SAL_CALL acquire( ) throw(::com::sun::star::uno::RuntimeException)
+ virtual void SAL_CALL acquire( ) throw()
{ ++nRef; }
- virtual void SAL_CALL release( ) throw(::com::sun::star::uno::RuntimeException)
+ virtual void SAL_CALL release( ) throw()
{ if (! --nRef) delete this; }
// A