From e87e9ab402f34bd347a991a19aef40e14b2abdb6 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 19 Dec 2012 09:41:20 +0100 Subject: [PATCH] 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 --- cpputools/source/unoexe/unoexe.cxx | 6 +++--- 1 file 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; }