sw/source/filter/ww8/wrtw8nds.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 1d46afc6a7097f3265654f21ad2e01d1a8d757c0 Author: Justin Luth <[email protected]> Date: Mon Feb 29 11:51:27 2016 +0300 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 <[email protected]> Reviewed-by: Justin Luth <[email protected]> diff --git a/sw/source/filter/ww8/wrtw8nds.cxx b/sw/source/filter/ww8/wrtw8nds.cxx index dfafdde..e66e9d2 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); } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
