diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-10 08:11:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-10 08:11:03 +0100 |
commit | cffac9e59b2460e06ad6d781fa8f428a2a3b56bf (patch) | |
tree | e31e9e73c53b2e13ff080905ab758f2225e8c167 /sax | |
parent | 243ab6d5583bdc02de38d62753e1b31ca8c0d162 (diff) |
New loplugin:conststringvar: sax
Change-Id: I110325963655391bb6223f132fcaab2b95f3c9e3
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/tools/converter.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx index 32e1ceb79335..7f2069bba9a6 100644 --- a/sax/source/tools/converter.cxx +++ b/sax/source/tools/converter.cxx @@ -44,11 +44,11 @@ using namespace ::com::sun::star::i18n; namespace sax { -static const sal_Char* gpsMM = "mm"; -static const sal_Char* gpsCM = "cm"; -static const sal_Char* gpsPT = "pt"; -static const sal_Char* gpsINCH = "in"; -static const sal_Char* gpsPC = "pc"; +static const sal_Char* const gpsMM = "mm"; +static const sal_Char* const gpsCM = "cm"; +static const sal_Char* const gpsPT = "pt"; +static const sal_Char* const gpsINCH = "in"; +static const sal_Char* const gpsPC = "pc"; const sal_Int8 XML_MAXDIGITSCOUNT_TIME = 14; |