From 44e700f70d750cf1c6aac89d0dd07a4f57879b1b Mon Sep 17 00:00:00 2001 From: Justin Luth Date: Mon, 29 Feb 2016 11:51:27 +0300 Subject: 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 Reviewed-by: Justin Luth --- sw/source/filter/ww8/wrtw8nds.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sw/source') 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); } -- cgit