summaryrefslogtreecommitdiff
path: root/cpputools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-12-19 09:41:20 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-12-19 09:55:31 +0100
commite87e9ab402f34bd347a991a19aef40e14b2abdb6 (patch)
tree227d7dac16d086f6f7ff6e6ef1e505d690a7626e /cpputools
parent0c1dc375b4bf0c8ff01fe51921767faa703b1295 (diff)
Missing "_" in prefixes
...likely gone unnoticed until now as that nested if is not normally taken, the createInstanceWithContext call at the top shall normally succeed. Change-Id: Iabc917473cf6902cb2afc21b735411d8136278fb
Diffstat (limited to 'cpputools')
-rw-r--r--cpputools/source/unoexe/unoexe.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpputools/source/unoexe/unoexe.cxx b/cpputools/source/unoexe/unoexe.cxx
index 20256aee38fc..54d02de0b721 100644
--- a/cpputools/source/unoexe/unoexe.cxx
+++ b/cpputools/source/unoexe/unoexe.cxx
@@ -232,21 +232,21 @@ void createInstance(
OUString(),
OUString( "com.sun.star.comp.io.Acceptor" ),
xSF, Reference< XRegistryKey >(),
- "acceptor" ) ) );
+ "acceptor_" ) ) );
// connector
xSet->insert( makeAny( loadSharedLibComponentFactory(
OUString( "connector.uno" SAL_DLLEXTENSION ),
OUString(),
OUString( "com.sun.star.comp.io.Connector" ),
xSF, Reference< XRegistryKey >(),
- "connector" ) ) );
+ "connector_" ) ) );
// bridge factory
xSet->insert( makeAny( loadSharedLibComponentFactory(
OUString( "binaryurp.uno" SAL_DLLEXTENSION ),
OUString(),
OUString( "com.sun.star.comp.bridge.BridgeFactory" ),
xSF, Reference< XRegistryKey >(),
- "binaryurp" ) ) );
+ "binaryurp_" ) ) );
}
s_bSet = sal_True;
}