// Modified by:
// Created: 26.07.99
// RCS-ID: $Id$
-// Copyright: (c) wxWindows team
+// Copyright: (c) wxWidgets team
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
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;
}
// ----------------------------------------------------------------------------