summaryrefslogtreecommitdiffstats
path: root/basic/source/classes
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-01-10 16:41:27 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-01-10 21:01:05 +0100
commit117ecc9870f57c3c211b4bfd35728503e1875743 (patch)
tree2d23e9fb370fb7943099b0aa1fcb6b0d41ebdedc /basic/source/classes
parenttdf#124176 Use pragma once instead of include guards (diff)
downloadcore-117ecc9870f57c3c211b4bfd35728503e1875743.tar.gz
core-117ecc9870f57c3c211b4bfd35728503e1875743.zip
fix coverity parse errors
Change-Id: I4884bfb67a061b865e8cf38b2fea6de0cb1bc3d6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109057 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'basic/source/classes')
-rw-r--r--basic/source/classes/sbunoobj.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index af9ca9e73da1..ac6fcf8a2879 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -100,9 +100,9 @@ using namespace cppu;
// Identifiers for creating the strings for dbg_Properties
-OUStringLiteral constexpr ID_DBG_SUPPORTEDINTERFACES = u"Dbg_SupportedInterfaces";
-OUStringLiteral const ID_DBG_PROPERTIES = u"Dbg_Properties";
-OUStringLiteral const ID_DBG_METHODS = u"Dbg_Methods";
+constexpr OUStringLiteral ID_DBG_SUPPORTEDINTERFACES = u"Dbg_SupportedInterfaces";
+constexpr OUStringLiteral ID_DBG_PROPERTIES = u"Dbg_Properties";
+constexpr OUStringLiteral ID_DBG_METHODS = u"Dbg_Methods";
char const aSeqLevelStr[] = "[]";