From: David Elliott Date: Thu, 6 Nov 2003 18:14:39 +0000 (+0000) Subject: Changed Command to ProcessCommand X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7424a6375b3dd1e080848ec215b5e8b071240326 Changed Command to ProcessCommand git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24419 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/cocoa/menuitem.mm b/src/cocoa/menuitem.mm index 67af3fde33..e5e5e7659d 100644 --- a/src/cocoa/menuitem.mm +++ b/src/cocoa/menuitem.mm @@ -65,7 +65,7 @@ { wxFrame *frame = menubar->GetFrame(); wxCHECK_RET(frame, "wxMenuBar MUST be attached to a wxFrame!"); - frame->Command(item->GetId()); + frame->ProcessCommand(item->GetId()); } }