summaryrefslogtreecommitdiff
path: root/sax/test/testcomponent.cxx
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-22 22:17:17 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-11-22 22:17:17 +0100
commitbd80ff75a216d6494a1de64896856f4bbccc52ff (patch)
treeab515c5c4c5932f75676eac95914fb64a4fc83b8 /sax/test/testcomponent.cxx
parent6cf3645e7d2c2c0c6e3be09361a29e54f41849a4 (diff)
RTL_CONSTASCII_USTRINGPARAM in libs-gui 06
Diffstat (limited to 'sax/test/testcomponent.cxx')
-rw-r--r--sax/test/testcomponent.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sax/test/testcomponent.cxx b/sax/test/testcomponent.cxx
index c92e416fc791..e395add9f662 100644
--- a/sax/test/testcomponent.cxx
+++ b/sax/test/testcomponent.cxx
@@ -79,7 +79,7 @@ int main (int argc, char **argv)
{
// Create registration service
Reference < XInterface > x = xSMgr->createInstance(
- OUString::createFromAscii( "com.sun.star.registry.ImplementationRegistration" ) );
+ OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.registry.ImplementationRegistration")) );
xReg = Reference< XImplementationRegistration > ( x , UNO_QUERY );
}
catch( Exception & ) {
@@ -102,7 +102,7 @@ int main (int argc, char **argv)
aDllName += OUString( RTL_CONSTASCII_USTRINGPARAM(".so"));
#endif
xReg->registerImplementation(
- OUString::createFromAscii( "com.sun.star.loader.SharedLibrary" ),
+ OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.loader.SharedLibrary")),
aDllName,
xSimpleReg );
}
@@ -130,7 +130,7 @@ int main (int argc, char **argv)
#endif
xReg->registerImplementation(
- OUString::createFromAscii( "com.sun.star.loader.SharedLibrary" ) ,
+ OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.loader.SharedLibrary")) ,
aDllName,
xSimpleReg );
}