X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f513aa78ee5e038b389732ccbccca1cab2220446..c70da1a2431f5391739514d3eeffd4b3b96c4508:/src/cocoa/textctrl.mm diff --git a/src/cocoa/textctrl.mm b/src/cocoa/textctrl.mm index 67da0acd68..b42cb65b2e 100644 --- a/src/cocoa/textctrl.mm +++ b/src/cocoa/textctrl.mm @@ -94,15 +94,7 @@ void wxTextCtrl::Cocoa_didChangeText(void) void wxTextCtrl::CocoaTarget_action(void) { - // NSTextField only sends the action message on enter key press and thus - // we send the appropriate event type. - wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, GetId()); - - // See wxTextCtrlBase::SendTextUpdatedEvent for why we don't set the string. - //event.SetString(GetValue()); - - event.SetEventObject(this); - GetEventHandler()->ProcessEvent(event); + SendTextUpdatedEvent(); } void wxTextCtrl::AppendText(wxString const&)