diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-02 22:34:20 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-02 22:34:20 -0500 |
commit | eb225ad5d756c26e7ed997b78e189d74f3435002 (patch) | |
tree | 0e8e08ccc27db0b6de57663d5a7609c35bd4f935 /framework/source | |
parent | f86ee78ba2fcb1ff3aca3c20c747932d615bed14 (diff) |
targeted string re-work
Change-Id: I48ca4f57f97f49fe344a7d4aab079f23765d2679
Diffstat (limited to 'framework/source')
-rw-r--r-- | framework/source/inc/pattern/configuration.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/inc/pattern/configuration.hxx b/framework/source/inc/pattern/configuration.hxx index 5c46c1cbc0fc..9d1f8a8b7db3 100644 --- a/framework/source/inc/pattern/configuration.hxx +++ b/framework/source/inc/pattern/configuration.hxx @@ -141,13 +141,13 @@ class ConfigurationHelper css::uno::Sequence< css::uno::Any > lParams(c); css::beans::PropertyValue aParam; - aParam.Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("nodepath")); + aParam.Name = ::rtl::OUString("nodepath"); aParam.Value <<= sPath.makeStringAndClear(); lParams[0] <<= aParam; if (bAllLocales) { - aParam.Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("*")); + aParam.Name = ::rtl::OUString("*"); aParam.Value <<= sal_True; lParams[1] <<= aParam; } |