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

coverity#738866 Uninitialized scalar field

Change-Id: I2ab29fb267055f70c0d42970abd4e4d944ab7006
üst d0e1a440
......@@ -138,12 +138,13 @@ public:
};
TreeControlPeer::TreeControlPeer()
: maSelectionListeners( *this )
, maTreeExpansionListeners( *this )
, maTreeEditListeners( *this )
, mpTreeImpl( 0 )
, mnEditLock( 0 )
, mpTreeNodeMap( 0 )
: maSelectionListeners( *this )
, maTreeExpansionListeners( *this )
, maTreeEditListeners( *this )
, mbIsRootDisplayed(false)
, mpTreeImpl( 0 )
, mnEditLock( 0 )
, mpTreeNodeMap( 0 )
{
}
......
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