diff options
author | Jian Hong Cheng <chengjh@apache.org> | 2012-08-22 04:35:05 +0000 |
---|---|---|
committer | Xisco Fauli <anistenis@gmail.com> | 2013-04-07 23:37:40 +0200 |
commit | 8b5cd38aae487dc2a84a1ee0f56e25daca851b02 (patch) | |
tree | 42e98365591b9008934441441f968b895ea2f54e | |
parent | 844e62d5ab9ddc77a1ea859653549ea71bcb6656 (diff) |
Fix issue #i119650: Font size increased if saved by AOO
* sw/source/filter/ww8/ww8atr.cxx
MS Word Binary compatibility
Patch by: Chen Peng,<chenpeng2006@gmail.com>
Found by: Yan Ji,<yanji.yj@gmail.com>
Review by: Jian Hong Cheng,<chengjh@apache.org>(cherry picked from commit 980ee15bad53f765a0df1a4507befc9184fc0c63)
Conflicts:
sw/source/filter/ww8/ww8atr.cxx
Change-Id: I6f2d3bcd4cea6718e1291c3297fd4a3681c07ee8
-rw-r--r-- | sw/source/filter/ww8/ww8atr.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
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()); } } } |