removed multiple duplicate copies (with subtly different behaviour) of SetStringSelection(); left only one of them in wxItemContainer (and another one in wxRadioBoxBase, to be removed)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32000 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -80,10 +80,6 @@ wxString wxComboBox::GetStringSelection()
|
||||
return wxEmptyString;
|
||||
}
|
||||
|
||||
void wxComboBox::SetStringSelection(const wxString& selection)
|
||||
{
|
||||
}
|
||||
|
||||
void wxComboBox::Clear()
|
||||
{
|
||||
}
|
||||
@@ -108,7 +104,7 @@ void wxComboBox::SetString(int, const wxString&)
|
||||
|
||||
int wxComboBox::FindString(const wxString&) const
|
||||
{
|
||||
return 0;
|
||||
return wxNOT_FOUND;
|
||||
}
|
||||
|
||||
int wxComboBox::GetSelection() const
|
||||
|
||||
Reference in New Issue
Block a user