From ab1751a151512e5e56f6641a639124a618028bd9 Mon Sep 17 00:00:00 2001 From: Gert Faller Date: Fri, 10 Dec 2010 18:54:29 +0100 Subject: RTL_CONSTASCII_USTRINGPARAM in ure 2 --- io/test/testconnection.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io/test') 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 >() ); -- cgit