wxComboCtrl::Clear() will call wxComboCtrl::SetValue(), but wxItemContainer::Clear() will call it too. So no need to call wxComboCtrl::Clear() here

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2014-09-23 17:42:39 +00:00
parent e5123cf2f4
commit 9ea0ff1374

View File

@ -124,7 +124,6 @@ public:
// override these methods to disambiguate between two base classes versions
virtual void Clear() wxOVERRIDE
{
wxComboCtrl::Clear();
wxItemContainer::Clear();
}