Kaydet (Commit) 061b839c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708504 Uninitialized scalar field

Change-Id: I36fd2d6f419ffbb3770e821019c1d665cf4b2c8b
üst 8b84c001
...@@ -813,7 +813,14 @@ private: ...@@ -813,7 +813,14 @@ private:
{ {
bool bHasHeader, bHasFooter; bool bHasHeader, bHasFooter;
sal_uInt32 nSwHLo, nSwFUp, nSwUp, nSwLo; sal_uInt32 nSwHLo, nSwFUp, nSwUp, nSwLo;
wwULSpaceData() : bHasHeader(false), bHasFooter(false) {} wwULSpaceData()
: bHasHeader(false)
, bHasFooter(false)
, nSwHLo(0)
, nSwFUp(0)
, nSwUp(0)
, nSwLo(0)
{}
}; };
void SetSegmentToPageDesc(const wwSection &rSection, bool bIgnoreCols); void SetSegmentToPageDesc(const wwSection &rSection, bool bIgnoreCols);
......
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