summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-23 16:44:20 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-23 18:50:59 +0100
commit2e963241d39e31b1d55552c77745e3fa3fa54c0f (patch)
treed7e4f654c88601d155ed57ff3cd3f6b0e1e18ffc /sw/source/filter/ww8
parent18aca55e1aa8649c12328a3ca8f40ca9b718f43a (diff)
coverity#708501 Uninitialized scalar field
Change-Id: I5ca7c564e2ec79862a3ad522df61b24e44e9a16d
Diffstat (limited to 'sw/source/filter/ww8')
-rw-r--r--sw/source/filter/ww8/ww8attributeoutput.hxx14
1 files changed, 13 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8attributeoutput.hxx b/sw/source/filter/ww8/ww8attributeoutput.hxx
index d1f628e722b5..e86ce678a6bd 100644
--- a/sw/source/filter/ww8/ww8attributeoutput.hxx
+++ b/sw/source/filter/ww8/ww8attributeoutput.hxx
@@ -457,7 +457,19 @@ protected:
bool mbOnTOXEnding;
public:
- WW8AttributeOutput( WW8Export &rWW8Export ) : AttributeOutputBase(), m_rWW8Export( rWW8Export ),mbOnTOXEnding(false) {}
+ WW8AttributeOutput( WW8Export &rWW8Export )
+ : AttributeOutputBase()
+ , m_rWW8Export(rWW8Export)
+ , nPOPosStdLen1(0)
+ , nPOPosStdLen2(0)
+ , m_nStyleStartSize(0)
+ , m_nStyleLenPos(0)
+ , m_nStyAnzPos(0)
+ , m_nFieldResults(0)
+ , mbOnTOXEnding(false)
+ {
+ }
+
virtual ~WW8AttributeOutput() {}
/// Return the right export class.