summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2022-07-08 13:12:43 +0200
committerLuboš Luňák <l.lunak@collabora.com>2022-07-08 19:59:01 +0200
commit9e258d95dc0cb5eaaf7479670eb98324718caf73 (patch)
treeffb34e37a116c253b5d3182da94e4097ab45673b
parent8b26fec2d57986bc511cbf659cd186b9900ae398 (diff)
include namespace when writing <div> tag in Writer HTML export
Change-Id: I5ae6cea44b1bff8dc55162e2f9cd6f034fe2857d
-rw-r--r--sw/source/filter/html/wrthtml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/html/wrthtml.cxx b/sw/source/filter/html/wrthtml.cxx
index 4f003dbdc115..238dbf36060a 100644
--- a/sw/source/filter/html/wrthtml.cxx
+++ b/sw/source/filter/html/wrthtml.cxx
@@ -704,7 +704,7 @@ static void lcl_html_OutSectionStartTag( SwHTMLWriter& rHTMLWrt,
rHTMLWrt.OutNewLine();
OStringBuffer sOut;
- sOut.append('<').append(OOO_STRING_SVTOOLS_HTML_division);
+ sOut.append("<" + rHTMLWrt.GetNamespace() + OOO_STRING_SVTOOLS_HTML_division);
const OUString& rName = rSection.GetSectionName();
if( !rName.isEmpty() && !bContinued )