resolve ambiguity between 2 inherited versions of Clear() in wxSimpleHtmlListBox (see bug 1836384)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51115 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-01-08 19:24:08 +00:00
parent 8df2696160
commit e52cd41e5d
2 changed files with 12 additions and 3 deletions

View File

@@ -603,6 +603,11 @@ void wxSimpleHtmlListBox::DoClear()
UpdateCount();
}
void wxSimpleHtmlListBox::Clear()
{
DoClear();
}
void wxSimpleHtmlListBox::DoDeleteOneItem(unsigned int n)
{
m_items.RemoveAt(n);