bool wxChoiceBase::SetStringSelection(const wxString& s)
{
int sel = FindString(s);
- wxCHECK_MSG( sel != -1, FALSE,
+ wxCHECK_MSG( sel != -1, false,
wxT("invalid string in wxChoice::SetStringSelection") );
Select(sel);
- return TRUE;
+ return true;
}
// ----------------------------------------------------------------------------