diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2000-10-27 08:00:57 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2000-10-27 08:00:57 +0000 |
commit | fd897e78d37343941b255a4cff1217e58ce031b7 (patch) | |
tree | 3a9d0fd4a8ac87e653e7d274da2c37478542738d /remotebridges/source | |
parent | 273dc52837cf988d756a6bdf7293dc1ce154fa99 (diff) |
Changed the service naming scheme, the meta service bridge.Bridge is now supported
Diffstat (limited to 'remotebridges/source')
-rw-r--r-- | remotebridges/source/bridge/remote_bridge.cxx | 11 | ||||
-rw-r--r-- | remotebridges/source/bridge/remotebridge.xml | 4 |
2 files changed, 8 insertions, 7 deletions
diff --git a/remotebridges/source/bridge/remote_bridge.cxx b/remotebridges/source/bridge/remote_bridge.cxx index 7e3f6cb92ae3..a709a9e817b3 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.1 $ + * $Revision: 1.2 $ * - * last change: $Author: jbu $ $Date: 2000-09-28 08:47:31 $ + * last change: $Author: jbu $ $Date: 2000-10-27 09:00:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -392,9 +392,10 @@ namespace remotebridges_bridge MutexGuard guard( Mutex::getGlobalMutex() ); if( !pNames ) { - static Sequence< OUString > seqNames(2); - seqNames.getArray()[0] = OUString::createFromAscii( "com.sun.star.bridge.Bridge.iiop" ); - seqNames.getArray()[1] = OUString::createFromAscii( "com.sun.star.bridge.Bridge.urp" ); + static Sequence< OUString > seqNames(3); + seqNames.getArray()[0] = OUString::createFromAscii( "com.sun.star.bridge.Bridge" ); + seqNames.getArray()[1] = OUString::createFromAscii( "com.sun.star.bridge.Iiop" ); + seqNames.getArray()[2] = OUString::createFromAscii( "com.sun.star.bridge.Urp" ); pNames = &seqNames; } diff --git a/remotebridges/source/bridge/remotebridge.xml b/remotebridges/source/bridge/remotebridge.xml index c9b98188e12a..58d6ef078463 100644 --- a/remotebridges/source/bridge/remotebridge.xml +++ b/remotebridges/source/bridge/remotebridge.xml @@ -21,8 +21,8 @@ <Status StatusValue="final"/> -<SupportedService> com.sun.star.bridge.Bridge.iiop </SupportedService> -<SupportedService> com.sun.star.bridge.Bridge.urp </SupportedService> +<SupportedService> com.sun.star.bridge.Iiop </SupportedService> +<SupportedService> com.sun.star.bridge.Urp </SupportedService> <ServiceDependency> ... </ServiceDependency> |