summaryrefslogtreecommitdiff
path: root/sal/qa/rtl/doublelock
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 /sal/qa/rtl/doublelock
parent4e729de73f2947155248f8df5897380611b87917 (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/doublelock')
-rw-r--r--sal/qa/rtl/doublelock/rtl_doublelocking.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sal/qa/rtl/doublelock/rtl_doublelocking.cxx b/sal/qa/rtl/doublelock/rtl_doublelocking.cxx
index befc16f36e92..1975057e33e3 100644
--- a/sal/qa/rtl/doublelock/rtl_doublelocking.cxx
+++ b/sal/qa/rtl/doublelock/rtl_doublelocking.cxx
@@ -46,9 +46,9 @@
#define CONST_TEST_STRING "gregorian"
namespace {
-struct Gregorian : public rtl::StaticWithInit<rtl::OUString, Gregorian> {
- const rtl::OUString operator () () {
- return rtl::OUString( CONST_TEST_STRING );
+struct Gregorian : public rtl::StaticWithInit<OUString, Gregorian> {
+ const OUString operator () () {
+ return OUString( CONST_TEST_STRING );
}
};
}
@@ -83,7 +83,7 @@ class OGetThread : public osl::Thread
sal_Int32 m_nOK;
sal_Int32 m_nFails;
- rtl::OUString m_sConstStr;
+ OUString m_sConstStr;
public:
OGetThread()
:m_nOK(0),
@@ -105,7 +105,7 @@ protected:
{
while(schedule())
{
- rtl::OUString aStr = Gregorian::get();
+ OUString aStr = Gregorian::get();
if (aStr == m_sConstStr)
{
m_nOK++;
@@ -141,7 +141,7 @@ namespace rtl_DoubleLocking
void getValue_001()
{
- rtl::OUString aStr = Gregorian::get();
+ OUString aStr = Gregorian::get();
CPPUNIT_ASSERT_MESSAGE(
"Gregorian::get() failed, wrong value expected.",