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
commit903200bc37044a9cb3364dde87005845c6461331 (patch)
treeba8f29bce7551314cbae117c5a4c0d671b52e9cd /remotebridges
parent49ad09fc5eee207f8e296ce69453cc028ee635d3 (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 060eee2bc..918742b16 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 82d7ed724..b4aeb04a6 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 f3d03c12a..af6bcd141 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 2a72230a8..002153a90 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 1b9eafc48..ab340bd1a 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: