summaryrefslogtreecommitdiff
path: root/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx')
-rw-r--r--sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx b/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx
index 55353039144f..281ba2ce4a75 100644
--- a/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx
+++ b/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx
@@ -694,7 +694,7 @@ namespace rtl_Bootstrap
void testSection() {
rtl::OUStringBuffer b;
- b.appendAscii(RTL_CONSTASCII_STRINGPARAM("${"));
+ b.append("${");
rtl::OUString p(t_getSourcePath(TESTSHL2_INI));
for (sal_Int32 i = 0; i < p.getLength(); ++i) {
if (p[i] != 'u') {
@@ -702,7 +702,7 @@ namespace rtl_Bootstrap
}
b.append(p[i]);
}
- b.appendAscii(RTL_CONSTASCII_STRINGPARAM(":Other_Section:EXPAND}"));
+ b.append(":Other_Section:EXPAND}");
rtl::OUString t(b.makeStringAndClear());
Bootstrap(t_getSourcePath(TESTSHL2_INI)).expandMacrosFrom(t);
CPPUNIT_ASSERT_MESSAGE( "section expansion", t == "$FILE" );