diff options
Diffstat (limited to 'vcl/osx/HtmlFmtFlt.cxx')
-rw-r--r-- | vcl/osx/HtmlFmtFlt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/HtmlFmtFlt.cxx b/vcl/osx/HtmlFmtFlt.cxx index 1cd679c2e8d3..6661d0e6fdde 100644 --- a/vcl/osx/HtmlFmtFlt.cxx +++ b/vcl/osx/HtmlFmtFlt.cxx @@ -149,7 +149,7 @@ Sequence<sal_Int8> HTMLFormatToTextHtml(const Sequence<sal_Int8>& aHTMLFormat) can improve this */ const char HtmlFormatStart[] = "Version:"; -int const HtmlFormatStartLen = (sizeof(HtmlFormatStart) - 1); +int const HtmlFormatStartLen = sizeof(HtmlFormatStart) - 1; bool isHTMLFormat(const Sequence<sal_Int8>& aHtmlSequence) { |