summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJian Hong Cheng <chengjh@apache.org>2012-08-22 04:35:05 +0000
committerXisco Fauli <anistenis@gmail.com>2013-04-07 23:37:40 +0200
commit8b5cd38aae487dc2a84a1ee0f56e25daca851b02 (patch)
tree42e98365591b9008934441441f968b895ea2f54e
parent844e62d5ab9ddc77a1ea859653549ea71bcb6656 (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.cxx2
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());
}
}
}