wxCheckListBox must clear the object that created in parent class

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77788 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2014-09-23 17:40:24 +00:00
parent a4e72041fb
commit c2b83f1b72

View File

@ -157,6 +157,7 @@ void wxCheckListBox::OnItemInserted(unsigned int pos)
void wxCheckListBox::DoClear()
{
wxListBox::DoClear();
m_checks.Empty();
}