diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-10-17 18:17:22 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-19 06:49:12 +0000 |
commit | a55496a9e88ac3da821b0ae0d334866d669540c6 (patch) | |
tree | 27a77c423792a971805fc385b9a9924eebbaf1aa /sw | |
parent | 2d64fcf4c8d3316ad9ae2232601678553dcad6a3 (diff) |
cppcheck:duplInheritedMember
Change-Id: Ie525330eb79a80fd47a6bfe46343aa25ae0aeb5c
Reviewed-on: https://gerrit.libreoffice.org/19419
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/wrtw8nds.cxx | 3 | ||||
-rw-r--r-- | sw/source/filter/ww8/wrtww8.cxx | 1 | ||||
-rw-r--r-- | sw/source/filter/ww8/wrtww8.hxx | 1 |
3 files changed, 1 insertions, 4 deletions
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx b/sw/source/filter/ww8/wrtw8nds.cxx index f3da84285504..66dfe4feb721 100644 --- a/sw/source/filter/ww8/wrtw8nds.cxx +++ b/sw/source/filter/ww8/wrtw8nds.cxx @@ -3068,8 +3068,7 @@ void MSWordExportBase::OutputContentNode( const SwContentNode& rNode ) case ND_TEXTNODE: { const SwTextNode& rTextNode = *rNode.GetTextNode(); - if( !m_bOutOutlineOnly || rTextNode.IsOutline() ) - OutputTextNode( rTextNode ); + OutputTextNode( rTextNode ); } break; case ND_GRFNODE: diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx index 8bd3e1d42651..588dc5f6b276 100644 --- a/sw/source/filter/ww8/wrtww8.cxx +++ b/sw/source/filter/ww8/wrtww8.cxx @@ -3395,7 +3395,6 @@ MSWordExportBase::MSWordExportBase( SwDoc *pDocument, SwPaM *pCurrentPam, SwPaM , m_bTabInTOC(false) , m_bHideTabLeaderAndPageNumbers(false) , m_bExportModeRTF(false) - , m_bOutOutlineOnly(false) , m_bFontSizeWritten(false) , m_pDoc(pDocument) , m_nCurStart(pCurrentPam->GetPoint()->nNode.GetIndex()) diff --git a/sw/source/filter/ww8/wrtww8.hxx b/sw/source/filter/ww8/wrtww8.hxx index 3638e69d25c1..ea1e06f60edb 100644 --- a/sw/source/filter/ww8/wrtww8.hxx +++ b/sw/source/filter/ww8/wrtww8.hxx @@ -555,7 +555,6 @@ public: bool m_bHideTabLeaderAndPageNumbers : 1 ; // true: the 'z' field of TOC is set. bool m_bExportModeRTF; - bool m_bOutOutlineOnly; // export outline nodes, only (send outline to clipboard/presentation) /// Is font size written already as part of the current character properties? bool m_bFontSizeWritten; |