summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTibor Nagy <nagy.tibor2@nisz.hu>2020-08-10 10:51:20 +0200
committerLászló Németh <nemeth@numbertext.org>2020-08-13 17:45:48 +0200
commit49e2bd6103669ca94d4e308fc08beed57f85c7e2 (patch)
tree4ef2814b2ad6b2f1430fd623f13518179a9a3963
parent68cc91cd2c461b7062c3f3b89b2c677e41c9a8d4 (diff)
tdf#131420 DOCX export: fix missing border of frame
Co-authored-by: Attila Szűcs (NISZ) Change-Id: If6ce28aab938eaf22fe578f8880e139b7b4eb22c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100418 Tested-by: Jenkins Tested-by: László Németh <nemeth@numbertext.org> Reviewed-by: László Németh <nemeth@numbertext.org>
-rw-r--r--sw/qa/extras/ooxmlexport/data/tdf131420.docxbin0 -> 11981 bytes
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport12.cxx6
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.cxx2
3 files changed, 8 insertions, 0 deletions
diff --git a/sw/qa/extras/ooxmlexport/data/tdf131420.docx b/sw/qa/extras/ooxmlexport/data/tdf131420.docx
new file mode 100644
index 000000000000..3600735245af
--- /dev/null
+++ b/sw/qa/extras/ooxmlexport/data/tdf131420.docx
Binary files differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx
index 739362d71c4c..9766e160e63a 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx
@@ -1084,6 +1084,12 @@ DECLARE_OOXMLEXPORT_TEST(testTdf116883, "tdf116883.docx")
}
}
+DECLARE_OOXMLEXPORT_EXPORTONLY_TEST(testTdf131420, "tdf131420.docx")
+{
+ xmlDocUniquePtr pXmlDocument = parseExport("word/document.xml");
+ assertXPath(pXmlDocument, "/w:document/w:body/w:p/w:pPr/w:pBdr[2]");
+}
+
CPPUNIT_PLUGIN_IMPLEMENT();
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index 7c15faf5e424..09bbad7e6e8b 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -1237,10 +1237,12 @@ void DocxAttributeOutput::EndParagraphProperties(const SfxItemSet& rParagraphMar
if (!m_bWritingHeaderFooter && m_pCurrentFrame)
{
const SwFrameFormat& rFrameFormat = m_pCurrentFrame->GetFrameFormat();
+ const SvxBoxItem& rBox = rFrameFormat.GetBox();
if (TextBoxIsFramePr(rFrameFormat))
{
const Size aSize = m_pCurrentFrame->GetSize();
PopulateFrameProperties(&rFrameFormat, aSize);
+ FormatBox(rBox);
}
}