diff options
Diffstat (limited to 'basic/qa/cppunit')
-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 6f3d9d7ecae1..9b80c32512d6 100644 --- a/basic/qa/cppunit/test_scanner.cxx +++ b/basic/qa/cppunit/test_scanner.cxx @@ -67,12 +67,12 @@ namespace CPPUNIT_TEST_SUITE_END(); }; - static const OUString cr = "\n"; - static const OUString rem = "REM"; - static const OUString asdf = "asdf"; - static const OUString dot = "."; - static const OUString goto_ = "goto"; - static const OUString excl = "!"; + const OUString cr = "\n"; + const OUString rem = "REM"; + const OUString asdf = "asdf"; + const OUString dot = "."; + const OUString goto_ = "goto"; + const OUString excl = "!"; std::vector<Symbol> getSymbols(const OUString& source, sal_Int32& errors, bool bCompatible = false) { |