diff options
author | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-22 22:17:17 +0100 |
---|---|---|
committer | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-22 22:17:17 +0100 |
commit | bd80ff75a216d6494a1de64896856f4bbccc52ff (patch) | |
tree | ab515c5c4c5932f75676eac95914fb64a4fc83b8 /sax/test/saxdemo.cxx | |
parent | 6cf3645e7d2c2c0c6e3be09361a29e54f41849a4 (diff) |
RTL_CONSTASCII_USTRINGPARAM in libs-gui 06
Diffstat (limited to 'sax/test/saxdemo.cxx')
-rw-r--r-- | sax/test/saxdemo.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sax/test/saxdemo.cxx b/sax/test/saxdemo.cxx index 18715609a4c0..28799f780dde 100644 --- a/sax/test/saxdemo.cxx +++ b/sax/test/saxdemo.cxx @@ -509,7 +509,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 & ) { @@ -524,7 +524,7 @@ int main (int argc, char **argv) OUString aDllName = OUString::createFromAscii( "sax.uno" SAL_DLLEXTENSION ); xReg->registerImplementation( - OUString::createFromAscii( "com.sun.star.loader.SharedLibrary" ), + OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.loader.SharedLibrary")), aDllName, Reference< XSimpleRegistry > () ); } @@ -541,7 +541,7 @@ int main (int argc, char **argv) // read xml from a file and count elements //-------------------------------- Reference< XInterface > x = xSMgr->createInstance( - OUString::createFromAscii( "com.sun.star.xml.sax.Parser" ) ); + OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Parser")) ); if( x.is() ) { Reference< XParser > rParser( x , UNO_QUERY ); @@ -581,7 +581,7 @@ int main (int argc, char **argv) //---------------------- // The SAX-Writer demo //---------------------- - x= xSMgr->createInstance( OUString::createFromAscii( "com.sun.star.xml.sax.Writer" ) ); + x= xSMgr->createInstance( OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Writer")) ); if( x.is() ) { printf( "start writing to %s\n" , argv[2] ); |