// headers
// ----------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "choicebase.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// this destructor is required for Darwin
}
-// ----------------------------------------------------------------------------
-// selection
-// ----------------------------------------------------------------------------
-
-bool wxChoiceBase::SetStringSelection(const wxString& s)
-{
- int sel = FindString(s);
- wxCHECK_MSG( sel != -1, false,
- wxT("invalid string in wxChoice::SetStringSelection") );
-
- Select(sel);
-
- return true;
-}
-
// ----------------------------------------------------------------------------
// misc
// ----------------------------------------------------------------------------