diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-04-23 15:41:47 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-04-23 15:41:47 +0000 |
commit | 281b211b1334a0e087b2967aacfb97256bff5303 (patch) | |
tree | 94a90a17cc25478556d2d006c90dcb8a9a090983 /remotebridges | |
parent | 38d201979301dcf9896af6c8c40041e98bd5c778 (diff) |
INTEGRATION: CWS uno2 (1.4.50); FILE MERGED
2003/04/08 13:40:23 dbo 1.4.50.1: #107991# UNO shared library component renaming
Diffstat (limited to 'remotebridges')
-rw-r--r-- | remotebridges/examples/officeclient.cxx | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/remotebridges/examples/officeclient.cxx b/remotebridges/examples/officeclient.cxx index 0a401f9ad58b..5ac0ddde40ce 100644 --- a/remotebridges/examples/officeclient.cxx +++ b/remotebridges/examples/officeclient.cxx @@ -2,9 +2,9 @@ * * $RCSfile: officeclient.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: jl $ $Date: 2001-03-12 16:12:34 $ + * last change: $Author: rt $ $Date: 2003-04-23 16:41:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -148,24 +148,21 @@ void OfficeClientMain::registerServices( ) } OUString aSharedLibrary[4]; - aSharedLibrary[0] = OUString::createFromAscii( "connectr" ); - aSharedLibrary[1] = OUString::createFromAscii( "remotebridge" ); - aSharedLibrary[2] = OUString::createFromAscii( "brdgfctr" ); - aSharedLibrary[3] = OUString::createFromAscii( "uuresolver" ); + aSharedLibrary[0] = + OUString::createFromAscii( "connector.uno" SAL_DLLEXTENSION ); + aSharedLibrary[1] = + OUString::createFromAscii( "remotebridge.uno" SAL_DLLEXTENSION ); + aSharedLibrary[2] = + OUString::createFromAscii( "bridgefac.uno" SAL_DLLEXTENSION ); + aSharedLibrary[3] = + OUString::createFromAscii( "uuresolver.uno" SAL_DLLEXTENSION ); sal_Int32 i; for( i = 0 ; i < 4 ; i ++ ) { // build the system specific library name -#ifdef SAL_W32 OUString aDllName = aSharedLibrary[i]; - aDllName += OUString::createFromAscii(".dll"); -#else - OUString aDllName = OUString::createFromAscii("lib"); - aDllName += aSharedLibrary[i]; - aDllName += OUString::createFromAscii(".so"); -#endif try { |