summaryrefslogtreecommitdiffstats
path: root/sw/source/filter/ww8/wrtw8nds.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-19 09:00:04 +0200
committerNoel Grandin <noel@peralex.com>2015-10-19 09:00:04 +0200
commitebd6fec73bfd77aa78a1ae92256d59d04ba999f3 (patch)
tree108b04c50177a6a36dc99dd8cfb2daac310c43a9 /sw/source/filter/ww8/wrtw8nds.cxx
parentslideshow: remove unecessary boost/bind includes (diff)
downloadcore-ebd6fec73bfd77aa78a1ae92256d59d04ba999f3.tar.gz
core-ebd6fec73bfd77aa78a1ae92256d59d04ba999f3.zip
Revert "cppcheck:duplInheritedMember"
This reverts commit a55496a9e88ac3da821b0ae0d334866d669540c6.
Diffstat (limited to 'sw/source/filter/ww8/wrtw8nds.cxx')
-rw-r--r--sw/source/filter/ww8/wrtw8nds.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx b/sw/source/filter/ww8/wrtw8nds.cxx
index 66dfe4feb721..f3da84285504 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -3068,7 +3068,8 @@ void MSWordExportBase::OutputContentNode( const SwContentNode& rNode )
case ND_TEXTNODE:
{
const SwTextNode& rTextNode = *rNode.GetTextNode();
- OutputTextNode( rTextNode );
+ if( !m_bOutOutlineOnly || rTextNode.IsOutline() )
+ OutputTextNode( rTextNode );
}
break;
case ND_GRFNODE: