diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-11 11:26:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-11 11:26:34 +0100 |
commit | 15e1a0bb4a8813aea57495dc25bc716c17c571a5 (patch) | |
tree | 6cccf4203de44e2380e8f82efa0915bd5dd204b9 /sw | |
parent | 7ca7e52bcaf8383b4643092c8ef4a2d699721ce9 (diff) |
Some loplugin:conststringvar/stringconstant improvements: sw
Change-Id: I5b9c3d2dac275659569141d4eae7b97e3aa397b8
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/html/css1atr.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/html/css1atr.cxx b/sw/source/filter/html/css1atr.cxx index 40eb5b5026ea..08acd4222a15 100644 --- a/sw/source/filter/html/css1atr.cxx +++ b/sw/source/filter/html/css1atr.cxx @@ -163,8 +163,8 @@ static Writer& OutCSS1_SwFormatLayoutSplit( Writer& rWrt, const SfxPoolItem& rHt namespace { -const sal_Char* sCSS1_rule_end = " }"; -const sal_Char* sCSS1_span_tag_end = "\">"; +const sal_Char* const sCSS1_rule_end = " }"; +const sal_Char* const sCSS1_span_tag_end = "\">"; const sal_Char cCSS1_style_opt_end = '\"'; const sal_Char* const sHTML_FTN_fontheight = "57%"; |