X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a236aa2058ccf3d36e9cafc20fa7375080c4be50..12bb29f5432174ecbd65549bda832d70d34a98ae:/src/cocoa/choice.mm?ds=inline diff --git a/src/cocoa/choice.mm b/src/cocoa/choice.mm index dbc2ce597f..12d04eaa86 100644 --- a/src/cocoa/choice.mm +++ b/src/cocoa/choice.mm @@ -6,7 +6,7 @@ // Created: 2003/03/16 // Id: $Id$ // Copyright: (c) 2003 David Elliott -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #include "wx/wxprec.h" @@ -29,7 +29,6 @@ #import #import -IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl) BEGIN_EVENT_TABLE(wxChoice, wxChoiceBase) END_EVENT_TABLE() // WX_IMPLEMENT_COCOA_OWNER(wxChoice,NSButton,NSControl,NSView) @@ -118,11 +117,11 @@ void wxChoice::CocoaNotification_menuDidSendAction(WX_NSNotification notificatio int index = [[(NSPopUpButton*)m_cocoaNSView menu] indexOfItem: menuitem]; int selectedItem = [(NSPopUpButton*)m_cocoaNSView indexOfSelectedItem]; wxLogTrace(wxTRACE_COCOA,wxT("menuDidSendAction, index=%d, selectedItem=%d"), index, selectedItem); - wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, m_windowId); + wxCommandEvent event(wxEVT_CHOICE, m_windowId); event.SetInt(index); event.SetEventObject(this); event.SetString(GetStringSelection()); - GetEventHandler()->ProcessEvent(event); + HandleWindowEvent(event); } void wxChoice::DoClear()