Resolve ambiguity with wxOwnerDrawnComboBox::Clear(), virtual method which is derived from two base classes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66388 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2010-12-16 18:13:43 +00:00
parent bd0fa687b6
commit eae20c901b
2 changed files with 7 additions and 1 deletions

View File

@@ -996,6 +996,11 @@ void wxOwnerDrawnComboBox::DoClear()
SetValue(wxEmptyString);
}
void wxOwnerDrawnComboBox::Clear()
{
DoClear();
}
void wxOwnerDrawnComboBox::DoDeleteOneItem(unsigned int n)
{
wxCHECK_RET( IsValid(n), wxT("invalid index in wxOwnerDrawnComboBox::Delete") );