fdo#38835 strip out OUString globals

Change-Id: I8bc386ffa88e31988bdc778a845403bec0772799
This commit is contained in:
Noel Grandin
2014-12-05 15:06:44 +02:00
parent 25c50ff9fb
commit 86b44e8e78
5 changed files with 44 additions and 56 deletions

View File

@@ -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)
{