From 117ecc9870f57c3c211b4bfd35728503e1875743 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 10 Jan 2021 16:41:27 +0000 Subject: fix coverity parse errors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I4884bfb67a061b865e8cf38b2fea6de0cb1bc3d6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109057 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- lotuswordpro/qa/cppunit/import_test.cxx | 2 +- lotuswordpro/source/filter/lwpsilverbullet.cxx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'lotuswordpro') 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; -- cgit