sw/source/filter/html/wrthtml.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit e7cc4ceca48c263270c01e9178ac3d68869f0050 Author: Luboš Luňák <l.lu...@collabora.com> AuthorDate: Fri Jul 8 13:12:43 2022 +0200 Commit: Luboš Luňák <l.lu...@collabora.com> CommitDate: Fri Jul 8 19:58:27 2022 +0200 include namespace when writing <div> tag in Writer HTML export Change-Id: I5ae6cea44b1bff8dc55162e2f9cd6f034fe2857d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136897 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lu...@collabora.com> diff --git a/sw/source/filter/html/wrthtml.cxx b/sw/source/filter/html/wrthtml.cxx index 2c0186c22b1f..d216e0d51cb7 100644 --- a/sw/source/filter/html/wrthtml.cxx +++ b/sw/source/filter/html/wrthtml.cxx @@ -700,7 +700,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 )