From 6f50961e69406a17d6ec998956a6b33208b1001b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 23 Oct 2018 12:06:00 +0200 Subject: 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 --- io/qa/textinputstream.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io/qa') 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 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); -- cgit