diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-23 12:06:00 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-24 14:43:34 +0200 |
commit | 6f50961e69406a17d6ec998956a6b33208b1001b (patch) | |
tree | 413c83df969e73c5cba1e11ef3740afc748ee1f5 /sal/qa/rtl/bootstrap | |
parent | 4e729de73f2947155248f8df5897380611b87917 (diff) |
remove more rtl::OUString and OString prefixes
which seem to have snuck back in since the great rounds of removals.
Change-Id: I85f7f5f4801c0b48dae8b50f51f83595b286d6a1
Reviewed-on: https://gerrit.libreoffice.org/62229
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sal/qa/rtl/bootstrap')
-rw-r--r-- | sal/qa/rtl/bootstrap/expand.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/qa/rtl/bootstrap/expand.cxx b/sal/qa/rtl/bootstrap/expand.cxx index a4102d38bc3b..e9799c15f37c 100644 --- a/sal/qa/rtl/bootstrap/expand.cxx +++ b/sal/qa/rtl/bootstrap/expand.cxx @@ -40,15 +40,15 @@ void Test::setUp() { } void Test::testDollar() { - rtl::OUString s("$WITH_DOLLAR"); + OUString s("$WITH_DOLLAR"); rtl::Bootstrap::expandMacros(s); - CPPUNIT_ASSERT_EQUAL(rtl::OUString("foo$TEST"), s); + CPPUNIT_ASSERT_EQUAL(OUString("foo$TEST"), s); } void Test::testIndirectDollar() { - rtl::OUString s("$INDIRECT"); + OUString s("$INDIRECT"); rtl::Bootstrap::expandMacros(s); - CPPUNIT_ASSERT_EQUAL(rtl::OUString("foo$TEST"), s); + CPPUNIT_ASSERT_EQUAL(OUString("foo$TEST"), s); } CPPUNIT_TEST_SUITE_REGISTRATION(Test); |