From 8b5cd38aae487dc2a84a1ee0f56e25daca851b02 Mon Sep 17 00:00:00 2001 From: Jian Hong Cheng Date: Wed, 22 Aug 2012 04:35:05 +0000 Subject: Fix issue #i119650: Font size increased if saved by AOO * sw/source/filter/ww8/ww8atr.cxx MS Word Binary compatibility Patch by: Chen Peng, Found by: Yan Ji, Review by: Jian Hong Cheng,(cherry picked from commit 980ee15bad53f765a0df1a4507befc9184fc0c63) Conflicts: sw/source/filter/ww8/ww8atr.cxx Change-Id: I6f2d3bcd4cea6718e1291c3297fd4a3681c07ee8 --- sw/source/filter/ww8/ww8atr.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx index 7c8560c9e1d4..b2123376aa1d 100644 --- a/sw/source/filter/ww8/ww8atr.cxx +++ b/sw/source/filter/ww8/ww8atr.cxx @@ -937,6 +937,8 @@ void WW8AttributeOutput::EndParagraph( ww8::WW8TableNodeInfoInner::Pointer_t pTe TableInfoRow( pTextNodeInfoInner ); m_rWW8Export.pPapPlc->AppendFkpEntry( m_rWW8Export.Strm().Tell(), m_rWW8Export.pO->size(), m_rWW8Export.pO->data()); m_rWW8Export.pO->clear(); + //For Bug 119650, should break the properties of CHP PLC after a paragraph end. + m_rWW8Export.pChpPlc->AppendFkpEntry( m_rWW8Export.Strm().Tell(), m_rWW8Export.pO->size(), m_rWW8Export.pO->data()); } } } -- cgit