// Modified by:
// Created: 26.07.99
// RCS-ID: $Id$
-// Copyright: (c) wxWindows team
+// Copyright: (c) wxWidgets team
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// headers
// ----------------------------------------------------------------------------
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "choicebase.h"
#endif
// 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
// ----------------------------------------------------------------------------
void wxChoiceBase::Command(wxCommandEvent& event)
{
- SetSelection(event.m_commandInt);
+ SetSelection(event.GetInt());
(void)ProcessEvent(event);
}