summaryrefslogtreecommitdiffstats
path: root/uui/source/services.cxx
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-05 08:24:57 +0100
committerDavid Tardon <dtardon@redhat.com>2010-11-05 08:24:57 +0100
commitb99dce8d43bbf394063224074c2f1a645f49d518 (patch)
tree3eb832f1608c1c776dea75c00b3b18e7ebcc5700 /uui/source/services.cxx
parentEasy Hacks : RTL_CONSTASCII_USTRINGPARAM (diff)
downloadcore-b99dce8d43bbf394063224074c2f1a645f49d518.tar.gz
core-b99dce8d43bbf394063224074c2f1a645f49d518.zip
Easy Hacks : RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'uui/source/services.cxx')
-rw-r--r--uui/source/services.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/uui/source/services.cxx b/uui/source/services.cxx
index 821fdef34c02..e2c5fae546f6 100644
--- a/uui/source/services.cxx
+++ b/uui/source/services.cxx
@@ -48,9 +48,9 @@ sal_Bool writeInfo( void * pRegistryKey,
const OUString & rImplementationName,
Sequence< OUString > const & rServiceNames )
{
- OUString aKeyName( OUString::createFromAscii( "/" ) );
+ OUString aKeyName( OUString(RTL_CONSTASCII_USTRINGPARAM( "/" )) );
aKeyName += rImplementationName;
- aKeyName += OUString::createFromAscii( "/UNO/SERVICES" );
+ aKeyName += OUString(RTL_CONSTASCII_USTRINGPARAM( "/UNO/SERVICES" ));
Reference< XRegistryKey > xKey;
try