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

coverity#708489 Uninitialized scalar field

Change-Id: Id557d9cc37e38d017efbb5b4d77070affe00f4b9
üst 73717981
...@@ -413,10 +413,20 @@ class SwFltOutDoc : public SwFltOutBase ...@@ -413,10 +413,20 @@ class SwFltOutDoc : public SwFltOutBase
public: public:
SwFltOutDoc(SwDoc& rDocu, SwPaM* pP, SwFltControlStack& rStk, SwFltOutDoc(SwDoc& rDocu, SwPaM* pP, SwFltControlStack& rStk,
SwFltEndStack& rEStk) SwFltEndStack& rEStk)
: SwFltOutBase(rDocu), rStack(rStk), rEndStack(rEStk), pPaM(pP), : SwFltOutBase(rDocu)
pFly(0), pTable(0), pTabSavedPos(0), pFlySavedPos(0), , rStack(rStk)
nTableWidth(0), bReadNoTbl(sal_False) , rEndStack(rEStk)
{} , pPaM(pP)
, pFly(0)
, pTable(0)
, pTabSavedPos(0)
, pFlySavedPos(0)
, nTableWidth(0)
, usTableX(0)
, usTableY(0)
, bReadNoTbl(sal_False)
{
}
void SetReadNoTable() { bReadNoTbl = sal_True; } void SetReadNoTable() { bReadNoTbl = sal_True; }
sal_Bool IsTableWidthSet() const { return 0 != nTableWidth; } sal_Bool IsTableWidthSet() const { return 0 != nTableWidth; }
......
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