diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-05 15:06:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-12-05 15:07:17 +0200 |
commit | 86b44e8e78716fbfc1783d692debcbb201fb9bd4 (patch) | |
tree | cae64df7bfb656962c16c7137bb98a8801419084 /basic/qa | |
parent | 25c50ff9fb0f277da9bc164d8244a774ef1ebba4 (diff) |
fdo#38835 strip out OUString globals
Change-Id: I8bc386ffa88e31988bdc778a845403bec0772799
Diffstat (limited to 'basic/qa')
-rw-r--r-- | basic/qa/cppunit/test_scanner.cxx | 12 |
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) { |