diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-11 16:39:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-11 16:39:43 +0100 |
commit | 584262fed1368dba382d88dfd25fe35ac7d4b349 (patch) | |
tree | bed7da36f2db982ec0491e926df1e414f8dcf86d /sw | |
parent | e316c4f2a40a4a562028f0a66c40321ffdf87378 (diff) |
loplugin:stringconstant: handle OStringBuffer::append
Change-Id: I283da52c0ee2b63c19e31e9a61ab24997c037a6a
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 08acd4222a15..3134a1c8265a 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* const sCSS1_rule_end = " }"; -const sal_Char* const sCSS1_span_tag_end = "\">"; +const sal_Char sCSS1_rule_end[] = " }"; +const sal_Char sCSS1_span_tag_end[] = "\">"; const sal_Char cCSS1_style_opt_end = '\"'; const sal_Char* const sHTML_FTN_fontheight = "57%"; |