Add a Clear() method simply calling the wxComboBoxBase::Clear() to

disambiguate it with wxTextCtrl::Clear() since wxCocoa's wxComboBox derives
from wxTextCtrl for some reason.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47738 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2007-07-26 18:40:44 +00:00
parent 57309d1415
commit 05ef417f46

View File

@ -101,6 +101,10 @@ protected:
// Implementation
// ------------------------------------------------------------------------
public:
// FIXME: Quit deriving from wxTextCtrl
void Clear() // HACK
{ wxComboBoxBase::Clear(); }
// wxCombobox methods
virtual void SetSelection(int pos);
// Overlapping methods