From: Jaakko Salli Date: Thu, 16 Dec 2010 18:08:16 +0000 (+0000) Subject: In wxBitmapComboBox dtor, call DoClear() instead of ambiguous Clear() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bd0fa687b6ceb05b202c44195037c8f629151705?ds=inline In wxBitmapComboBox dtor, call DoClear() instead of ambiguous Clear() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66387 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/bmpcboxg.cpp b/src/generic/bmpcboxg.cpp index bf88843844..029d8a5463 100644 --- a/src/generic/bmpcboxg.cpp +++ b/src/generic/bmpcboxg.cpp @@ -128,7 +128,7 @@ bool wxBitmapComboBox::Create(wxWindow *parent, wxBitmapComboBox::~wxBitmapComboBox() { - Clear(); + DoClear(); } // ----------------------------------------------------------------------------