summaryrefslogtreecommitdiffstats
path: root/io
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-10-23 12:06:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-10-24 14:43:34 +0200
commit6f50961e69406a17d6ec998956a6b33208b1001b (patch)
tree413c83df969e73c5cba1e11ef3740afc748ee1f5 /io
parentScDoubleItem is dead (diff)
downloadcore-6f50961e69406a17d6ec998956a6b33208b1001b.tar.gz
core-6f50961e69406a17d6ec998956a6b33208b1001b.zip
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 'io')
-rw-r--r--io/qa/textinputstream.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/io/qa/textinputstream.cxx b/io/qa/textinputstream.cxx
index 29f8740ac673..75371a0d3863 100644
--- a/io/qa/textinputstream.cxx
+++ b/io/qa/textinputstream.cxx
@@ -117,8 +117,8 @@ void Test::testReadLine() {
css::uno::Reference<css::io::XTextInputStream2> s(
css::io::TextInputStream::create(getComponentContext()));
s->setInputStream(new Input);
- rtl::OUString l(s->readLine());
- CPPUNIT_ASSERT_EQUAL(rtl::OUString("123456789"), l);
+ OUString l(s->readLine());
+ CPPUNIT_ASSERT_EQUAL(OUString("123456789"), l);
}
CPPUNIT_TEST_SUITE_REGISTRATION(Test);