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 | 2d8048e56bb3c630b6e39486683d5b08db510948 (patch) | |
tree | 86d7da3fd30e80b2c692a8d3a7ce8b6a2e06bab3 /io | |
parent | 8b9849322b31f40e05e39475b39af616c71b1086 (diff) |
RTL_CONSTASCII_USTRINGPARAM in ure 2
Diffstat (limited to 'io')
-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 400f339ca..fe06374f7 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 >() ); |