summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/qa/cppunit/import_test.cxx2
-rw-r--r--lotuswordpro/source/filter/lwpsilverbullet.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/qa/cppunit/import_test.cxx b/lotuswordpro/qa/cppunit/import_test.cxx
index 6963ba5d5a76..efd40267a9f9 100644
--- a/lotuswordpro/qa/cppunit/import_test.cxx
+++ b/lotuswordpro/qa/cppunit/import_test.cxx
@@ -51,7 +51,7 @@ void LotusWordProTest::tearDown()
test::BootstrapFixture::tearDown();
}
-OUStringLiteral const DATA_DIRECTORY = u"/lotuswordpro/qa/cppunit/data/";
+constexpr OUStringLiteral DATA_DIRECTORY = u"/lotuswordpro/qa/cppunit/data/";
CPPUNIT_TEST_FIXTURE(LotusWordProTest, testTdf129993)
{
diff --git a/lotuswordpro/source/filter/lwpsilverbullet.cxx b/lotuswordpro/source/filter/lwpsilverbullet.cxx
index 457df875c948..105bdf169115 100644
--- a/lotuswordpro/source/filter/lwpsilverbullet.cxx
+++ b/lotuswordpro/source/filter/lwpsilverbullet.cxx
@@ -282,19 +282,19 @@ OUString LwpSilverBullet::GetNumCharByStyleID(LwpFribParaNumber const * pParaNum
break;
case NUMCHAR_Chinese1:
{
- static OUStringLiteral const sBuf = u"\u58f9\u002c\u0020\u8d30, \u53c1, ...";
+ static constexpr OUStringLiteral sBuf = u"\u58f9\u002c\u0020\u8d30, \u53c1, ...";
strNumChar = OUString(sBuf);
}
break;
case NUMCHAR_Chinese2:
{
- static OUStringLiteral const sBuf = u"\u4e00, \u4e8c, \u4e09, ...";
+ static constexpr OUStringLiteral sBuf = u"\u4e00, \u4e8c, \u4e09, ...";
strNumChar = OUString(sBuf);
}
break;
case NUMCHAR_Chinese3:
{
- static OUStringLiteral const sBuf = u"\u7532, \u4e59, \u4e19, ...";
+ static constexpr OUStringLiteral sBuf = u"\u7532, \u4e59, \u4e19, ...";
strNumChar = OUString(sBuf);
}
break;