diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-01-08 19:54:55 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-01-09 13:01:49 +0100 |
commit | ac396f2f6b058ddff8c394443669b8c5d8b97b71 (patch) | |
tree | fc5120838a69ced58c3cd2333718ffeb6d4adf67 /sw/source/ui/vba | |
parent | 0c20b68149797c8b0779534a8e0cb9045085d451 (diff) |
fix coverity parse errors
Change-Id: I3a1179947704452e3ffec02be59d0f7bf0b75ab0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109017
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/ui/vba')
-rw-r--r-- | sw/source/ui/vba/vbalisthelper.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/vba/vbalisthelper.cxx b/sw/source/ui/vba/vbalisthelper.cxx index 4e863236931f..a6597a539145 100644 --- a/sw/source/ui/vba/vbalisthelper.cxx +++ b/sw/source/ui/vba/vbalisthelper.cxx @@ -31,12 +31,12 @@ using namespace ::com::sun::star; const sal_Int32 LIST_LEVEL_COUNT = 9; -const OUStringLiteral UNO_NAME_PARENT_NUMBERING = u"ParentNumbering"; -const OUStringLiteral UNO_NAME_PREFIX = u"Prefix"; -const OUStringLiteral UNO_NAME_SUFFIX = u"Suffix"; -const OUStringLiteral UNO_NAME_CHAR_STYLE_NAME = u"CharStyleName"; -const OUStringLiteral UNO_NAME_NUMBERING_TYPE = u"NumberingType"; -const OUStringLiteral UNO_NAME_BULLET_CHAR = u"BulletChar"; +constexpr OUStringLiteral UNO_NAME_PARENT_NUMBERING = u"ParentNumbering"; +constexpr OUStringLiteral UNO_NAME_PREFIX = u"Prefix"; +constexpr OUStringLiteral UNO_NAME_SUFFIX = u"Suffix"; +constexpr OUStringLiteral UNO_NAME_CHAR_STYLE_NAME = u"CharStyleName"; +constexpr OUStringLiteral UNO_NAME_NUMBERING_TYPE = u"NumberingType"; +constexpr OUStringLiteral UNO_NAME_BULLET_CHAR = u"BulletChar"; const sal_Unicode CHAR_CLOSED_DOT[] = u"\u2022"; const char CHAR_EMPTY_DOT[] = "o"; |