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

coverity#708457 Uninitialized scalar field

Change-Id: I72a0a06bd341ce5527ff7ec88f8686a80e194117
üst 580bbbf8
......@@ -1269,8 +1269,10 @@ public:
};
SwSpaceManipulator::SwSpaceManipulator( SwTxtPaintInfo& rInf,
SwMultiPortion& rMult ) :
rInfo( rInf ), rMulti( rMult )
SwMultiPortion& rMult )
: rInfo(rInf)
, rMulti(rMult)
, nSpaceAdd(0)
{
pOldSpaceAdd = rInfo.GetpSpaceAdd();
nOldSpIdx = rInfo.GetSpaceIdx();
......
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