diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-09 22:08:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-09 22:08:52 +0100 |
commit | a0a42ade2137348a83c05f01fe25ebadab69a9e2 (patch) | |
tree | 2e4b2b310959df05a0d92a1e97fd9cac9fbd1da5 /vcl/osx | |
parent | 4f36a2fbe6287281122aff2e781b9b7de9a41b88 (diff) |
loplugin:externvar
Change-Id: Ie6834e7cb1e65a2e24c6250126c24463e6e49354
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/HtmlFmtFlt.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/HtmlFmtFlt.cxx b/vcl/osx/HtmlFmtFlt.cxx index 9804dbd32e1f..e068a45b4142 100644 --- a/vcl/osx/HtmlFmtFlt.cxx +++ b/vcl/osx/HtmlFmtFlt.cxx @@ -115,7 +115,7 @@ Sequence<sal_Int8> SAL_CALL TextHtmlToHTMLFormat(Sequence<sal_Int8>& aTextHtml) return byteSequence; } -const char* HtmlStartTag = "<html"; +const char* const HtmlStartTag = "<html"; Sequence<sal_Int8> HTMLFormatToTextHtml(const Sequence<sal_Int8>& aHTMLFormat) { @@ -149,7 +149,7 @@ Sequence<sal_Int8> HTMLFormatToTextHtml(const Sequence<sal_Int8>& aHTMLFormat) can improve this */ const char HtmlFormatStart[] = "Version:"; -int HtmlFormatStartLen = (sizeof(HtmlFormatStart) - 1); +int const HtmlFormatStartLen = (sizeof(HtmlFormatStart) - 1); bool isHTMLFormat(const Sequence<sal_Int8>& aHtmlSequence) { |