From: Vadim Zeitlin Date: Wed, 23 Jan 2008 23:03:40 +0000 (+0000) Subject: no real changes, just use HandleWindowEvent() instead of GetEventHandler()->SafelyPro... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d9df421aae468ea61807e93e420233337fadb190 no real changes, just use HandleWindowEvent() instead of GetEventHandler()->SafelyProcessEvent() in the last change git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51352 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp index e97a419bd6..e2d31c67f2 100644 --- a/src/common/menucmn.cpp +++ b/src/common/menucmn.cpp @@ -465,7 +465,7 @@ bool wxMenuBase::SendEvent(int id, int checked) wxWindow *win = menu->GetInvokingWindow(); if ( win ) { - processed = win->GetEventHandler()->SafelyProcessEvent(event); + processed = win->HandleWindowEvent(event); break; }