summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-11-01 16:00:16 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-11-01 16:00:16 +0000
commit1938161336711a32fde89f7cf49658849054a0a2 (patch)
tree56deb8a8a59936111d2fc2b81c621a0db3bd7049 /desktop
parentffe0afb2a3e26c6ce267a386deee5370ded0859b (diff)
#92924#: exception specifications
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/oinstanceprovider.cxx8
-rw-r--r--desktop/source/app/oinstanceprovider.hxx8
-rw-r--r--desktop/source/app/opluginframefactory.cxx8
-rw-r--r--desktop/source/app/opluginframefactory.hxx8
4 files changed, 16 insertions, 16 deletions
diff --git a/desktop/source/app/oinstanceprovider.cxx b/desktop/source/app/oinstanceprovider.cxx
index adc5dce318fd..93355e94fad1 100644
--- a/desktop/source/app/oinstanceprovider.cxx
+++ b/desktop/source/app/oinstanceprovider.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: oinstanceprovider.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: cd $ $Date: 2001-07-16 12:52:33 $
+ * last change: $Author: hr $ $Date: 2001-11-01 17:00:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -135,10 +135,10 @@ OInstanceProvider::~OInstanceProvider()
// XInterface
//*****************************************************************************************************************
-void SAL_CALL OInstanceProvider::acquire() throw( RuntimeException )
+void SAL_CALL OInstanceProvider::acquire() throw()
{ OWeakObject::acquire(); }
-void SAL_CALL OInstanceProvider::release() throw( RuntimeException )
+void SAL_CALL OInstanceProvider::release() throw()
{ OWeakObject::release(); }
Any SAL_CALL OInstanceProvider::queryInterface( const Type& aType ) throw( RuntimeException )
diff --git a/desktop/source/app/oinstanceprovider.hxx b/desktop/source/app/oinstanceprovider.hxx
index c21004ffef7e..decda8fc8dc0 100644
--- a/desktop/source/app/oinstanceprovider.hxx
+++ b/desktop/source/app/oinstanceprovider.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: oinstanceprovider.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: cd $ $Date: 2001-07-16 12:52:33 $
+ * last change: $Author: hr $ $Date: 2001-11-01 17:00:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -165,8 +165,8 @@ class OInstanceProvider : public XINSTANCEPROVIDER ,
// XInterface
//---------------------------------------------------------------------------------------------------------
- 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();
virtual ANY SAL_CALL queryInterface( const UNOTYPE& aType ) throw( RUNTIMEEXCEPTION );
//---------------------------------------------------------------------------------------------------------
diff --git a/desktop/source/app/opluginframefactory.cxx b/desktop/source/app/opluginframefactory.cxx
index b1c57c430021..30fa27a9cf52 100644
--- a/desktop/source/app/opluginframefactory.cxx
+++ b/desktop/source/app/opluginframefactory.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: opluginframefactory.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: cd $ $Date: 2001-07-16 12:52:33 $
+ * last change: $Author: hr $ $Date: 2001-11-01 17:00:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -138,10 +138,10 @@ OPlugInFrameFactory::~OPlugInFrameFactory()
// XInterface
//*****************************************************************************************************************
-void SAL_CALL OPlugInFrameFactory::acquire() throw( RuntimeException )
+void SAL_CALL OPlugInFrameFactory::acquire() throw()
{ OWeakObject::acquire(); }
-void SAL_CALL OPlugInFrameFactory::release() throw( RuntimeException )
+void SAL_CALL OPlugInFrameFactory::release() throw()
{ OWeakObject::release(); }
Any SAL_CALL OPlugInFrameFactory::queryInterface( const Type& aType ) throw( RuntimeException )
diff --git a/desktop/source/app/opluginframefactory.hxx b/desktop/source/app/opluginframefactory.hxx
index d793e02d9a0d..d3b0897d5b52 100644
--- a/desktop/source/app/opluginframefactory.hxx
+++ b/desktop/source/app/opluginframefactory.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: opluginframefactory.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: cd $ $Date: 2001-07-16 12:52:33 $
+ * last change: $Author: hr $ $Date: 2001-11-01 17:00:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -162,8 +162,8 @@ class OPlugInFrameFactory : public XSINGLESERVICEFACTORY ,
// XInterface
//---------------------------------------------------------------------------------------------------------
- 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();
virtual ANY SAL_CALL queryInterface( const UNOTYPE& aType ) throw( RUNTIMEEXCEPTION );
//---------------------------------------------------------------------------------------------------------