summaryrefslogtreecommitdiff
path: root/sal/qa/rtl
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-19 14:16:55 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-19 14:18:10 +0100
commit5bb4a2ba1d8a6b98720868786e552aa8fd2a22eb (patch)
treef891d796fa21c5bfb941eaa4a3f0c05a7e179cc6 /sal/qa/rtl
parent2633b249ea6921645c57ab24a1c9ad0c8e61e144 (diff)
further OUString cleanup
Change-Id: I19954ee5976cb881a5fe73a889c8e04a19b14eb6
Diffstat (limited to 'sal/qa/rtl')
-rw-r--r--sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx b/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx
index 0cab17f5b546..b7b164043564 100644
--- a/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx
+++ b/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx
@@ -112,7 +112,7 @@ inline rtl::OUString t_getSourcePath(rtl::OString const& _sFilename)
{
rtl::OUString aDirURL(getExecutableDirectory());
- aDirURL += OUString("/");
+ aDirURL += "/";
aDirURL += OUString::createFromAscii( _sFilename.getStr() );
#if defined(WNT)
aDirURL += rtl::OUString(".ini");
@@ -577,8 +577,7 @@ namespace rtl_Bootstrap
rtl::OUString suMacro("${"); //rtlrc:Bootstrap:RTLVALUE}");
rtl::OUString aDirURL("$ORIGIN");
- aDirURL += OUString("/");
- aDirURL += OUString("rtl");
+ aDirURL += "/rtl";
#if defined(WNT)
aDirURL += rtl::OUString(".ini");
#else
@@ -748,7 +747,7 @@ namespace rtl_Bootstrap
rtl::OUString suName("INHERITED_VALUE");
OUString suGetValue;
Bootstrap::get( suName, suGetValue );
- suGetValue += OUString("/well");
+ suGetValue += "/well";
CPPUNIT_ASSERT_MESSAGE("expandMacros failed.", suGetValue.compareTo(suMacro) == 0 );
}