Kaydet (Commit) 2e963241 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708501 Uninitialized scalar field

Change-Id: I5ca7c564e2ec79862a3ad522df61b24e44e9a16d
üst 18aca55e
...@@ -457,7 +457,19 @@ protected: ...@@ -457,7 +457,19 @@ protected:
bool mbOnTOXEnding; bool mbOnTOXEnding;
public: 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() {} virtual ~WW8AttributeOutput() {}
/// Return the right export class. /// Return the right export class.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment