diff options
author | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-20 11:21:28 +0100 |
---|---|---|
committer | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-20 11:21:28 +0100 |
commit | 82e54f6a8f96840b894efb30be5279767e709d4f (patch) | |
tree | 17b32f080ce19e0b1ff7a5ec8c917a849f6d95dc /framework/source/inc/pattern | |
parent | c835fdce76454f7d08d1cf8b3f36ce1a3936ec0c (diff) |
TL_CONSTASCII_USTRINGPARAM in libs core 23
Diffstat (limited to 'framework/source/inc/pattern')
-rw-r--r-- | framework/source/inc/pattern/configuration.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/inc/pattern/configuration.hxx b/framework/source/inc/pattern/configuration.hxx index 580c20195cd1..f5c6a296863b 100644 --- a/framework/source/inc/pattern/configuration.hxx +++ b/framework/source/inc/pattern/configuration.hxx @@ -119,7 +119,7 @@ class ConfigurationHelper const ::rtl::OUString& sRelPath , sal_Int32 nOpenFlags) { - static ::rtl::OUString PATH_SEPERATOR = ::rtl::OUString::createFromAscii("/"); + static ::rtl::OUString PATH_SEPERATOR(RTL_CONSTASCII_USTRINGPARAM("/")); css::uno::Reference< css::uno::XInterface > xCFG; @@ -143,13 +143,13 @@ class ConfigurationHelper css::uno::Sequence< css::uno::Any > lParams(c); css::beans::PropertyValue aParam; - aParam.Name = ::rtl::OUString::createFromAscii("nodepath"); + aParam.Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("nodepath")); aParam.Value <<= sPath.makeStringAndClear(); lParams[0] <<= aParam; if (bAllLocales) { - aParam.Name = ::rtl::OUString::createFromAscii("*"); + aParam.Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("*")); aParam.Value <<= sal_True; lParams[1] <<= aParam; } |