summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Luth <justin_luth@sil.org>2016-02-29 11:51:27 +0300
committerJustin Luth <justin_luth@sil.org>2016-03-01 04:32:12 +0000
commit1d46afc6a7097f3265654f21ad2e01d1a8d757c0 (patch)
treec8a4f12fcc8287fa734f48a204cbd134093facf1
parent95b8c3b3d20257ae8d361dc64d438806655c495a (diff)
tdf#97960 - .doc: preserve font size in empty cells
fixes regression from commit e1b123896d5b0a96c2959b6b6768c7cffabafd4f. Change-Id: Iccc10cdba89cdae6a5618d29022e0eaf609c9d6f Reviewed-on: https://gerrit.libreoffice.org/22769 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Justin Luth <justin_luth@sil.org>
-rw-r--r--sw/source/filter/ww8/wrtw8nds.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx b/sw/source/filter/ww8/wrtw8nds.cxx
index dfafddecca55..e66e9d2c9595 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -2330,7 +2330,7 @@ void MSWordExportBase::OutputTextNode( const SwTextNode& rNode )
WriteCR( pTextNodeInfoInner );
- if ( bIsEndOfCell )
+ if ( (0 != nEnd) && bIsEndOfCell )
{
AttrOutput().OutputFKP(true);
}