diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-12-23 13:16:31 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-12-26 14:51:15 +0100 |
commit | a3d0091d185f39eddabf4d372ebe0ac3061dbb89 (patch) | |
tree | 4d70cedc274972ccc21b6b8e7105f042090cf5d6 /lotuswordpro | |
parent | af791fb775e35c11ad01c42a7085dd121ab9c7a6 (diff) |
New loplugin:stringliteralvar
See the comment at the top of compilerplugins/clang/stringliteralvar.cxx for
details.
(Turned some affected variables in included files into inline variables, to
avoid GCC warnings about unused variables.)
Change-Id: Ie77219e6adfdaaceaa8b4e590b08971f2f04c83a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108239
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/qa/cppunit/import_test.cxx | 2 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpsilverbullet.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/qa/cppunit/import_test.cxx b/lotuswordpro/qa/cppunit/import_test.cxx index 6c629cb6031b..6963ba5d5a76 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(); } -char const DATA_DIRECTORY[] = "/lotuswordpro/qa/cppunit/data/"; +OUStringLiteral const 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 76b4810c1427..457df875c948 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: { - sal_Unicode const sBuf[13] = u"\u58f9\u002c\u0020\u8d30, \u53c1, ..."; + static OUStringLiteral const sBuf = u"\u58f9\u002c\u0020\u8d30, \u53c1, ..."; strNumChar = OUString(sBuf); } break; case NUMCHAR_Chinese2: { - sal_Unicode const sBuf[13] = u"\u4e00, \u4e8c, \u4e09, ..."; + static OUStringLiteral const sBuf = u"\u4e00, \u4e8c, \u4e09, ..."; strNumChar = OUString(sBuf); } break; case NUMCHAR_Chinese3: { - sal_Unicode const sBuf[13] = u"\u7532, \u4e59, \u4e19, ..."; + static OUStringLiteral const sBuf = u"\u7532, \u4e59, \u4e19, ..."; strNumChar = OUString(sBuf); } break; |