From c2b83f1b726d96c8a7eba46c19670d51d21638dd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 23 Sep 2014 17:40:24 +0000 Subject: [PATCH] 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 --- src/univ/checklst.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/univ/checklst.cpp b/src/univ/checklst.cpp index 6cb9f73efa..defc6f028e 100644 --- a/src/univ/checklst.cpp +++ b/src/univ/checklst.cpp @@ -157,6 +157,7 @@ void wxCheckListBox::OnItemInserted(unsigned int pos) void wxCheckListBox::DoClear() { + wxListBox::DoClear(); m_checks.Empty(); }