summaryrefslogtreecommitdiff
path: root/remotebridges
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-09-11 12:51:37 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-09-11 12:51:37 +0000
commit1355bf7192f0135ea9cc92018563e2d5465bf789 (patch)
tree630ba938f0cc3e248796204542f8c871fe2aea1b /remotebridges
parent6f81f4bc8e2ab90467754be54d18eddb7ba0e00f (diff)
#92075#: exception specifications
Diffstat (limited to 'remotebridges')
-rw-r--r--remotebridges/source/bridge/remote_bridge.cxx6
-rw-r--r--remotebridges/source/bridge/remote_bridge.hxx10
-rw-r--r--remotebridges/source/factory/bridgefactory.cxx12
-rw-r--r--remotebridges/source/factory/bridgeimpl.cxx6
-rw-r--r--remotebridges/source/factory/bridgeimpl.hxx10
5 files changed, 22 insertions, 22 deletions
diff --git a/remotebridges/source/bridge/remote_bridge.cxx b/remotebridges/source/bridge/remote_bridge.cxx
index 8d3dfb06b1a7..8406803a5456 100644
--- a/remotebridges/source/bridge/remote_bridge.cxx
+++ b/remotebridges/source/bridge/remote_bridge.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: remote_bridge.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: jbu $ $Date: 2001-06-22 16:39:16 $
+ * last change: $Author: hr $ $Date: 2001-09-11 13:50:45 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -118,7 +118,7 @@ namespace remotebridges_bridge
}
}
- Any ORemoteBridge::queryInterface( const Type & aType )
+ Any ORemoteBridge::queryInterface( const Type & aType ) throw(RuntimeException)
{
Any a = ::cppu::queryInterface(
aType ,
diff --git a/remotebridges/source/bridge/remote_bridge.hxx b/remotebridges/source/bridge/remote_bridge.hxx
index b33b04831ec4..e39482d636e8 100644
--- a/remotebridges/source/bridge/remote_bridge.hxx
+++ b/remotebridges/source/bridge/remote_bridge.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: remote_bridge.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: jbu $ $Date: 2001-06-22 16:39:16 $
+ * last change: $Author: hr $ $Date: 2001-09-11 13:50:45 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -102,11 +102,11 @@ namespace remotebridges_bridge
// XInterface
public:
::com::sun::star::uno::Any SAL_CALL
- queryInterface( const ::com::sun::star::uno::Type & aType );
+ queryInterface( const ::com::sun::star::uno::Type & aType ) throw(::com::sun::star::uno::RuntimeException);
- void SAL_CALL acquire()
+ void SAL_CALL acquire() throw()
{ OComponentHelper::acquire(); }
- void SAL_CALL release()
+ void SAL_CALL release() throw()
{ OComponentHelper::release(); }
public:
diff --git a/remotebridges/source/factory/bridgefactory.cxx b/remotebridges/source/factory/bridgefactory.cxx
index f17f62bfc32d..e0659aa2da16 100644
--- a/remotebridges/source/factory/bridgefactory.cxx
+++ b/remotebridges/source/factory/bridgefactory.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: bridgefactory.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: jbu $ $Date: 2001-06-22 16:39:16 $
+ * last change: $Author: hr $ $Date: 2001-09-11 13:51:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -144,11 +144,11 @@ namespace remotebridges_factory
public: // XInterface
::com::sun::star::uno::Any SAL_CALL
- queryInterface( const ::com::sun::star::uno::Type & aType );
+ queryInterface( const ::com::sun::star::uno::Type & aType ) throw(RuntimeException);
- void SAL_CALL acquire()
+ void SAL_CALL acquire() throw()
{ OComponentHelper::acquire(); }
- void SAL_CALL release()
+ void SAL_CALL release() throw()
{ OComponentHelper::release(); }
public:
@@ -279,7 +279,7 @@ namespace remotebridges_factory
return sService;
}
- Any OBridgeFactory::queryInterface( const Type &aType )
+ Any OBridgeFactory::queryInterface( const Type &aType ) throw(RuntimeException)
{
Any a = ::cppu::queryInterface(
aType ,
diff --git a/remotebridges/source/factory/bridgeimpl.cxx b/remotebridges/source/factory/bridgeimpl.cxx
index 7f9c913b7bde..44e14f7ae141 100644
--- a/remotebridges/source/factory/bridgeimpl.cxx
+++ b/remotebridges/source/factory/bridgeimpl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: bridgeimpl.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: jbu $ $Date: 2001-06-22 16:39:16 $
+ * last change: $Author: hr $ $Date: 2001-09-11 13:51:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -94,7 +94,7 @@ namespace remotebridges_factory {
g_moduleCount.modCnt.release( &g_moduleCount.modCnt );
}
- ::com::sun::star::uno::Any OBridge::queryInterface( const ::com::sun::star::uno::Type & aType )
+ ::com::sun::star::uno::Any OBridge::queryInterface( const ::com::sun::star::uno::Type & aType ) throw(RuntimeException)
{
Any a = ::cppu::queryInterface(
aType ,
diff --git a/remotebridges/source/factory/bridgeimpl.hxx b/remotebridges/source/factory/bridgeimpl.hxx
index 51c99a36e2f1..7ca75a7e9bfb 100644
--- a/remotebridges/source/factory/bridgeimpl.hxx
+++ b/remotebridges/source/factory/bridgeimpl.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: bridgeimpl.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jbu $ $Date: 2001-06-22 16:39:16 $
+ * last change: $Author: hr $ $Date: 2001-09-11 13:51:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -99,11 +99,11 @@ namespace remotebridges_factory {
// XInterface
public:
::com::sun::star::uno::Any SAL_CALL
- queryInterface( const ::com::sun::star::uno::Type & aType );
+ queryInterface( const ::com::sun::star::uno::Type & aType ) throw(com::sun::star::uno::RuntimeException);
- void SAL_CALL acquire()
+ void SAL_CALL acquire() throw()
{ OComponentHelper::acquire(); }
- void SAL_CALL release()
+ void SAL_CALL release() throw()
{ OComponentHelper::release(); }
public: