// implementation
// ============================================================================
-// ----------------------------------------------------------------------------
-// selection
-// ----------------------------------------------------------------------------
-
-bool wxChoiceBase::SetStringSelection(const wxString& s)
+wxChoiceBase::~wxChoiceBase()
{
- int sel = FindString(s);
- wxCHECK_MSG( sel != -1, false,
- wxT("invalid string in wxChoice::SetStringSelection") );
-
- Select(sel);
-
- return true;
+ // this destructor is required for Darwin
}
// ----------------------------------------------------------------------------
void wxChoiceBase::Command(wxCommandEvent& event)
{
- SetSelection(event.m_commandInt);
+ SetSelection(event.GetInt());
(void)ProcessEvent(event);
}