X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6463b9f5399b8670a0c74f2f8666bc2c9f37a406..2b43d5885d32e38f89814eec6c97cc2141458137:/src/common/choiccmn.cpp?ds=inline diff --git a/src/common/choiccmn.cpp b/src/common/choiccmn.cpp index 9fc8861528..d090aafd74 100644 --- a/src/common/choiccmn.cpp +++ b/src/common/choiccmn.cpp @@ -5,7 +5,7 @@ // Modified by: // Created: 26.07.99 // RCS-ID: $Id$ -// Copyright: (c) wxWindows team +// Copyright: (c) wxWidgets team // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -50,12 +50,12 @@ wxChoiceBase::~wxChoiceBase() 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; } // ---------------------------------------------------------------------------- @@ -64,7 +64,7 @@ bool wxChoiceBase::SetStringSelection(const wxString& s) void wxChoiceBase::Command(wxCommandEvent& event) { - SetSelection(event.m_commandInt); + SetSelection(event.GetInt()); (void)ProcessEvent(event); }