git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39964
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool wxListBoxBase::SetStringSelection(const wxString& s, bool select)
{
bool wxListBoxBase::SetStringSelection(const wxString& s, bool select)
{
- int sel = FindString(s);
- wxCHECK_MSG( sel != wxNOT_FOUND, false,
- wxT("invalid string in SetStringSelection") );
+ const int sel = FindString(s);
+ if ( sel == wxNOT_FOUND )
+ return false;
SetSelection(sel, select);
SetSelection(sel, select);