summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedric.bosdonnat.ooo@free.fr>2011-11-21 18:27:51 +0100
committerCédric Bosdonnat <cedric.bosdonnat.ooo@free.fr>2011-11-22 15:17:04 +0100
commit07b5fe3b8c858c1d6f8c21e89ac940663cd97f62 (patch)
treec2ed63e3ba57e44f0c18914097b2c93a1ad13662 /writerfilter
parentd66a2c452575f7a1b960e9ec6512b9d32eff4f61 (diff)
n#417818: empty paragraphs in tables weren't considered in the table.
The paragraph properties weren't propagated to the empty paragraphs in the tables. Called checkNeedPap() to do that job when finding \par.
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/rtftok/rtfdocumentimpl.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 3b799370838a..b6f33c321f05 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -1302,8 +1302,7 @@ int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
break;
case RTF_PAR:
{
- if (m_bNeedPap)
- checkChangedFrame();
+ checkNeedPap();
if (!m_pCurrentBuffer)
parBreak();
else if (m_aStates.top().nDestinationState != DESTINATION_SHAPETEXT)