diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-02-20 20:19:07 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-02-20 20:46:40 -0500 |
commit | 88c6cbda921f1e3627910f9028ff2e29f26160e7 (patch) | |
tree | 81195fcaf70c066a928e272bfaa5c28f4317751d /vcl | |
parent | f1f8b3bfdc3406ea79b662a2fda3d0c1cb87bb10 (diff) |
fdo#74584: These tags should be lowercase for correct clipboard handling.
Change-Id: I323b96cecbf7158919fad534a202f158965ca99f
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/osx/HtmlFmtFlt.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/osx/HtmlFmtFlt.cxx b/vcl/osx/HtmlFmtFlt.cxx index e629f11e982e..f5e0b2282004 100644 --- a/vcl/osx/HtmlFmtFlt.cxx +++ b/vcl/osx/HtmlFmtFlt.cxx @@ -73,13 +73,13 @@ std::string GetHtmlFormatHeader(size_t startHtml, size_t endHtml, size_t startFr // the office always writes the start and end html tag in upper cases and // without spaces both tags don't allow parameters -const std::string TAG_HTML = std::string("<HTML>"); -const std::string TAG_END_HTML = std::string("</HTML>"); +const std::string TAG_HTML = std::string("<html>"); +const std::string TAG_END_HTML = std::string("</html>"); // The body tag may have parameters so we need to search for the // closing '>' manually e.g. <BODY param> #92840# -const std::string TAG_BODY = std::string("<BODY"); -const std::string TAG_END_BODY = std::string("</BODY"); +const std::string TAG_BODY = std::string("<body"); +const std::string TAG_END_BODY = std::string("</body"); Sequence<sal_Int8> SAL_CALL TextHtmlToHTMLFormat(Sequence<sal_Int8>& aTextHtml) { |