diff options
author | Gert Faller <gertfaller@aliceadsl.fr> | 2010-12-10 18:54:29 +0100 |
---|---|---|
committer | Gert Faller <gertfaller@aliceadsl.fr> | 2010-12-10 18:54:29 +0100 |
commit | ab1751a151512e5e56f6641a639124a618028bd9 (patch) | |
tree | 4b5c11a865bd645ff6dd1a7f268fc3333ca965dd /io/test | |
parent | 3a18c3d97abfb60a09cc6a8bd5dd163fe2cfafa3 (diff) |
RTL_CONSTASCII_USTRINGPARAM in ure 2
Diffstat (limited to 'io/test')
-rw-r--r-- | io/test/testconnection.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/io/test/testconnection.cxx b/io/test/testconnection.cxx index 6b03859a4389..dac0bd2cc127 100644 --- a/io/test/testconnection.cxx +++ b/io/test/testconnection.cxx @@ -193,11 +193,11 @@ int __cdecl main( int argc, char * argv[] ) OSL_ENSURE( xImplReg.is(), "### no impl reg!" ); OUString aLibName = - OUString::createFromAscii( "connector.uno" SAL_DLLEXTENSION ); + OUString(RTL_CONSTASCII_USTRINGPARAM( "connector.uno" SAL_DLLEXTENSION )); xImplReg->registerImplementation( OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.loader.SharedLibrary")), aLibName, Reference< XSimpleRegistry >() ); - aLibName = OUString::createFromAscii( "acceptor.uno" SAL_DLLEXTENSION ); + aLibName = OUString(RTL_CONSTASCII_USTRINGPARAM( "acceptor.uno" SAL_DLLEXTENSION )); xImplReg->registerImplementation( OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.loader.SharedLibrary")), aLibName, Reference< XSimpleRegistry >() ); |