diff options
author | Pierre-Eric Pelloux-Prayer <pierre-eric@lanedo.com> | 2013-01-14 14:49:01 +0100 |
---|---|---|
committer | Pierre-Eric Pelloux-Prayer <pierre-eric@lanedo.com> | 2013-01-14 14:52:31 +0100 |
commit | b1859c3a6d32dff66550c33831df241035d91aa9 (patch) | |
tree | 28dcdd4d5d56d8ef706d93992e65df7871c08755 | |
parent | 50b6dc0099ff61050b82a2e37e70d643151e7ce7 (diff) |
docx export: add missing arg to impl_pageBorders call
The missing argument could cause data loss due to ill-formatted
document produced.
Change-Id: I65dee7f42c633ae9602d454e2f03ebc821c9c0ab
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index 2669b5fee0b1..273287b5a2d5 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -4474,7 +4474,7 @@ void DocxAttributeOutput::FormatBox( const SvxBoxItem& rBox ) m_pSerializer->startElementNS( XML_w, XML_pBdr, FSEND ); } - impl_pageBorders( m_pSerializer, rBox, false, false ); + impl_pageBorders( m_pSerializer, rBox, XML_pBdr, false, false ); if ( m_bOpenedSectPr ) { |