summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/docxattributeoutput.cxx
diff options
context:
space:
mode:
authorTibor Nagy <nagy.tibor2@nisz.hu>2020-07-29 15:50:08 +0200
committerLászló Németh <nemeth@numbertext.org>2020-08-07 11:22:11 +0200
commit6f22e4e5f93af27fa41bd1054a817df2409fdc62 (patch)
tree9674ba05b2fdcb495eeacbfb9310953c68e12f9b /sw/source/filter/ww8/docxattributeoutput.cxx
parente5f0c4dd632d3c4a9eea36f65974d6004ac07983 (diff)
tdf#131420 DOCX export: fix missing border of frame
Co-authored-by: Attila Szűcs (NISZ) Change-Id: I5afa9532d247a6041a1931ad80c4516e02adbd6a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99697 Tested-by: Jenkins Tested-by: László Németh <nemeth@numbertext.org> Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'sw/source/filter/ww8/docxattributeoutput.cxx')
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index 4d59477f9d68..f1f440abe290 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -1236,10 +1236,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);
}
}