diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-30 20:57:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-30 21:02:48 +0100 |
commit | 858292697c3624556922852d88623aaf72e0fccd (patch) | |
tree | c2eebfd88d9290e1ec30a38264c6a60e1e00029e | |
parent | 3124c258716a6483000d9e217b0e300326683cfe (diff) |
coverity#708465 Uninitialized scalar field
Change-Id: I56bc0398a6c61c128a3fc07ab7761bd3bc70250d
-rw-r--r-- | sw/source/core/text/txtfly.cxx | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/sw/source/core/text/txtfly.cxx b/sw/source/core/text/txtfly.cxx index d4cd73486965..fb122fd4b570 100644 --- a/sw/source/core/text/txtfly.cxx +++ b/sw/source/core/text/txtfly.cxx @@ -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) + { } |