X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..cc4d5638c66a409e421420ed7110917755a66788:/src/univ/choice.cpp?ds=sidebyside diff --git a/src/univ/choice.cpp b/src/univ/choice.cpp index 426b2b4180..1147aa4900 100644 --- a/src/univ/choice.cpp +++ b/src/univ/choice.cpp @@ -1,10 +1,9 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: univ/choice.cpp +// Name: src/univ/choice.cpp // Purpose: wxChoice implementation // Author: Vadim Zeitlin // Modified by: // Created: 15.12.00 -// RCS-ID: $Id$ // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com) // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -17,10 +16,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "univchoice.h" -#endif - #include "wx/wxprec.h" #ifdef __BORLANDC__ @@ -29,15 +24,14 @@ #if wxUSE_CHOICE +#include "wx/choice.h" + #ifndef WX_PRECOMP - #include "wx/choice.h" #include "wx/arrstr.h" #endif -IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl) - BEGIN_EVENT_TABLE(wxChoice, wxComboBox) - EVT_COMBOBOX(-1, wxChoice::OnComboBox) + EVT_COMBOBOX(wxID_ANY, wxChoice::OnComboBox) END_EVENT_TABLE() wxChoice::wxChoice(wxWindow *parent, wxWindowID id, @@ -86,7 +80,7 @@ void wxChoice::OnComboBox(wxCommandEvent& event) { if ( event.GetId() == GetId() ) { - event.SetEventType(wxEVT_COMMAND_CHOICE_SELECTED); + event.SetEventType(wxEVT_CHOICE); event.Skip(); GetEventHandler()->ProcessEvent(event); }