summaryrefslogtreecommitdiffstats
path: root/basic
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-05 15:06:44 +0200
committerNoel Grandin <noel@peralex.com>2014-12-05 15:07:17 +0200
commit86b44e8e78716fbfc1783d692debcbb201fb9bd4 (patch)
treecae64df7bfb656962c16c7137bb98a8801419084 /basic
parentfdo#87005 SwTxtFormatter::NewPortion: fix lost SwFlyPortion (diff)
downloadcore-86b44e8e78716fbfc1783d692debcbb201fb9bd4.tar.gz
core-86b44e8e78716fbfc1783d692debcbb201fb9bd4.zip
fdo#38835 strip out OUString globals
Change-Id: I8bc386ffa88e31988bdc778a845403bec0772799
Diffstat (limited to 'basic')
-rw-r--r--basic/qa/cppunit/test_scanner.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basic/qa/cppunit/test_scanner.cxx b/basic/qa/cppunit/test_scanner.cxx
index f9421b2f118a..2618c085a62a 100644
--- a/basic/qa/cppunit/test_scanner.cxx
+++ b/basic/qa/cppunit/test_scanner.cxx
@@ -67,12 +67,12 @@ namespace
CPPUNIT_TEST_SUITE_END();
};
- const static OUString cr("\n");
- const static OUString rem("REM");
- const static OUString asdf("asdf");
- const static OUString dot(".");
- const static OUString goto_("goto");
- const static OUString excl("!");
+ static const char cr[] = "\n";
+ static const char rem[] = "REM";
+ static const char asdf[] = "asdf";
+ static const char dot[] = ".";
+ static const char goto_[] = "goto";
+ static const char excl[] = "!";
std::vector<Symbol> getSymbols(const OUString& source, sal_Int32& errors, bool bCompatible = false)
{