summaryrefslogtreecommitdiff
path: root/sw
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:29:54 +0000
commit44e700f70d750cf1c6aac89d0dd07a4f57879b1b (patch)
treee9fdf7255e962ee2fd62c9e29a143d419e28c83e /sw
parentcb01ea920550769e8a04b3cb809c70ed324ba342 (diff)
tdf#97960 - .doc: preserve font size in empty cells
fixes regression from commit e1b123896d5b0a96c2959b6b6768c7cffabafd4f. Change-Id: Iccc10cdba89cdae6a5618d29022e0eaf609c9d6f Reviewed-on: https://gerrit.libreoffice.org/22759 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Justin Luth <justin_luth@sil.org>
Diffstat (limited to 'sw')
-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 841f1922cdae..5717ae4bfd10 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -2334,7 +2334,7 @@ void MSWordExportBase::OutputTextNode( const SwTextNode& rNode )
WriteCR( pTextNodeInfoInner );
- if ( bIsEndOfCell )
+ if ( (0 != nEnd) && bIsEndOfCell )
{
AttrOutput().OutputFKP(true);
}