summaryrefslogtreecommitdiff
path: root/sal/rtl
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-05-06 16:32:22 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-05-06 16:51:45 +0200
commite2e2cc61144cb22227eebfadff0ea24b51ccfbd0 (patch)
tree8063275cabcdf32e30c37451a32d96db5929561a /sal/rtl
parentd01768c31a0658c8a74e0dd3a95b2d781639d18e (diff)
remove usage of RTL_CONSTASCII_USTRINGPARAM
Mechanical removal of usage together with OUString ctor, done by compiler plugin. Change-Id: I554227f76df0dac620b1b46fca32516f78b462c5
Diffstat (limited to 'sal/rtl')
-rw-r--r--sal/rtl/bootstrap.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx
index 865acce66160..c6a2f74801f8 100644
--- a/sal/rtl/bootstrap.cxx
+++ b/sal/rtl/bootstrap.cxx
@@ -286,7 +286,7 @@ static OUString & getIniFileName_Impl()
fileName = fileName.copy(0, fileName.getLength() - progExt.getLength());
// append config file suffix
- fileName += OUString(RTL_CONSTASCII_USTRINGPARAM(SAL_CONFIGFILE("")));
+ fileName += OUString(SAL_CONFIGFILE(""));
}
#endif
@@ -491,19 +491,19 @@ bool Bootstrap_Impl::getValue(
}
if (key == "_OS") {
rtl_uString_assign(
- value, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(RTL_OS)).pData);
+ value, rtl::OUString(RTL_OS).pData);
return true;
}
if (key == "_ARCH") {
rtl_uString_assign(
- value, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(RTL_ARCH)).pData);
+ value, rtl::OUString(RTL_ARCH).pData);
return true;
}
if (key == "_CPPU_ENV") {
rtl_uString_assign(
value,
(rtl::OUString(
- RTL_CONSTASCII_USTRINGPARAM(SAL_STRINGIFY(CPPU_ENV))).
+ SAL_STRINGIFY(CPPU_ENV)).
pData));
return true;
}