summaryrefslogtreecommitdiff
path: root/cpputools
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-10-02 10:57:38 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2012-10-02 11:10:03 +0200
commit95630ef04b9df092653fb2f68d91a7e6100f7a4e (patch)
treec5d2da99d5baccbd269e7eaa8a2303c5e65028b7 /cpputools
parent565acfef761e37a0172154aae0bdace1ce3c6666 (diff)
these libs are now prefixed
Change-Id: Ida3cc87ef2ef6fdb40b03d0401fbefa5e7cd7c92
Diffstat (limited to 'cpputools')
-rw-r--r--cpputools/source/unoexe/unoexe.cxx28
1 files changed, 12 insertions, 16 deletions
diff --git a/cpputools/source/unoexe/unoexe.cxx b/cpputools/source/unoexe/unoexe.cxx
index d9a92e3dd2f6..db3e63b8d36e 100644
--- a/cpputools/source/unoexe/unoexe.cxx
+++ b/cpputools/source/unoexe/unoexe.cxx
@@ -257,29 +257,25 @@ void createInstance(
Reference< XMultiServiceFactory > xSF( xMgr, UNO_QUERY );
// acceptor
xSet->insert( makeAny( loadSharedLibComponentFactory(
- OUString( RTL_CONSTASCII_USTRINGPARAM(
- "acceptor.uno" SAL_DLLEXTENSION) ),
+ OUString( "acceptor.uno" SAL_DLLEXTENSION ),
OUString(),
- OUString( RTL_CONSTASCII_USTRINGPARAM(
- "com.sun.star.comp.io.Acceptor") ),
- xSF, Reference< XRegistryKey >() ) ) );
+ OUString( "com.sun.star.comp.io.Acceptor" ),
+ xSF, Reference< XRegistryKey >(),
+ "acceptor" ) ) );
// connector
xSet->insert( makeAny( loadSharedLibComponentFactory(
- OUString( RTL_CONSTASCII_USTRINGPARAM(
- "connector.uno" SAL_DLLEXTENSION) ),
+ OUString( "connector.uno" SAL_DLLEXTENSION ),
OUString(),
- OUString( RTL_CONSTASCII_USTRINGPARAM(
- "com.sun.star.comp.io.Connector") ),
- xSF, Reference< XRegistryKey >() ) ) );
+ OUString( "com.sun.star.comp.io.Connector" ),
+ xSF, Reference< XRegistryKey >(),
+ "connector" ) ) );
// bridge factory
xSet->insert( makeAny( loadSharedLibComponentFactory(
- OUString( RTL_CONSTASCII_USTRINGPARAM(
- "binaryurp.uno" SAL_DLLEXTENSION) ),
+ OUString( "binaryurp.uno" SAL_DLLEXTENSION ),
OUString(),
- OUString(
- RTL_CONSTASCII_USTRINGPARAM(
- "com.sun.star.comp.bridge.BridgeFactory") ),
- xSF, Reference< XRegistryKey >() ) ) );
+ OUString( "com.sun.star.comp.bridge.BridgeFactory" ),
+ xSF, Reference< XRegistryKey >(),
+ "binaryurp" ) ) );
}
s_bSet = sal_True;
}