diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-10 08:11:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-10 08:11:30 +0100 |
commit | 03d9c3d67d062f23d58497f80932fa734122f857 (patch) | |
tree | 1ec14fbc2b32bc8ade6640d4832ae629c469e9f9 /linguistic | |
parent | 5f225f7f5d069088a9c2f70768f7506ccf3682af (diff) |
New loplugin:conststringvar: linguistic
Change-Id: Ia9bf537071df32879c7cc92744c12556025f82ff
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/source/dicimp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linguistic/source/dicimp.cxx b/linguistic/source/dicimp.cxx index 5efe94f475de..401398e57086 100644 --- a/linguistic/source/dicimp.cxx +++ b/linguistic/source/dicimp.cxx @@ -59,9 +59,9 @@ using namespace linguistic; #define MAX_HEADER_LENGTH 16 -static const sal_Char* pVerStr2 = "WBSWG2"; -static const sal_Char* pVerStr5 = "WBSWG5"; -static const sal_Char* pVerStr6 = "WBSWG6"; +static const sal_Char* const pVerStr2 = "WBSWG2"; +static const sal_Char* const pVerStr5 = "WBSWG5"; +static const sal_Char* const pVerStr6 = "WBSWG6"; static const sal_Char* pVerOOo7 = "OOoUserDict1"; static const sal_Int16 DIC_VERSION_DONTKNOW = -1; |