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

coverity#708465 Uninitialized scalar field

Change-Id: I56bc0398a6c61c128a3fc07ab7761bd3bc70250d
üst 3124c258
......@@ -310,15 +310,21 @@ const SwRect SwContourCache::ContourRect( const SwFmt* pFmt,
return aRet;
}
SwTxtFly::SwTxtFly() :
pPage(0),
mpCurrAnchoredObj(0),
pCurrFrm(0),
pMaster(0),
mpAnchoredObjList(0),
nMinBottom(0),
nNextTop(0),
nIndex(0)
SwTxtFly::SwTxtFly()
: pPage(0)
, mpCurrAnchoredObj(0)
, pCurrFrm(0)
, pMaster(0)
, mpAnchoredObjList(0)
, nMinBottom(0)
, nNextTop(0)
, nIndex(0)
, bOn(false)
, bTopRule(false)
, mbIgnoreCurrentFrame(false)
, mbIgnoreContour(false)
, mbIgnoreObjsInHeaderFooter(false)
{
}
......
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