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

coverity#708589 Uninitialized pointer field

Change-Id: Ifc584276b32e517cb3105133de731e068851254b
üst 617faefa
......@@ -42,7 +42,9 @@ void ListBox::EnableQuickSelection( const bool& b )
mpImplLB->GetMainWindow()->EnableQuickSelection(b);
}
ListBox::ListBox( WindowType nType ) : Control( nType )
ListBox::ListBox(WindowType nType)
: Control(nType)
, mpImplLB(NULL)
{
ImplInitListBoxData();
}
......
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