summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorJustin Luth <justin_luth@sil.org>2016-02-29 11:51:27 +0300
committerAndras Timar <andras.timar@collabora.com>2016-03-02 11:00:04 +0100
commit1ffc22f03576e3eb087529ba59d630d23f369fb3 (patch)
tree63184cbc7c501310f30038048273c83053db5d3c /sw
parente3d9b42d12269388f18b663b1cc48444e9aa7723 (diff)
tdf#97960 - .doc: preserve font size in empty cells
fixes regression from commit e1b123896d5b0a96c2959b6b6768c7cffabafd4f. Change-Id: Iccc10cdba89cdae6a5618d29022e0eaf609c9d6f Reviewed-on: https://gerrit.libreoffice.org/22778 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Justin Luth <justin_luth@sil.org> (cherry picked from commit b51c60b8b84c6a211b1c89bfd3001cb562ba5907)
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 9adbbb1c83c7..832f85414082 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -2401,7 +2401,7 @@ void MSWordExportBase::OutputTextNode( const SwTextNode& rNode )
WriteCR( pTextNodeInfoInner );
- if ( bIsEndOfCell )
+ if ( (0 != nEnd) && bIsEndOfCell )
{
AttrOutput().OutputFKP(true);
}