From 9ea0ff13748cfbe5e4f0a7deebf5b2952975236d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 23 Sep 2014 17:42:39 +0000 Subject: [PATCH] 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 --- include/wx/univ/combobox.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/wx/univ/combobox.h b/include/wx/univ/combobox.h index b584bbea26..0a99a84b09 100644 --- a/include/wx/univ/combobox.h +++ b/include/wx/univ/combobox.h @@ -124,7 +124,6 @@ public: // override these methods to disambiguate between two base classes versions virtual void Clear() wxOVERRIDE { - wxComboCtrl::Clear(); wxItemContainer::Clear(); }