From: David Elliott Date: Fri, 18 May 2007 23:02:55 +0000 (+0000) Subject: Implement a hack so the correct wxGUIEventLoop class will be used. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b181f9a5806b831d8c038648642c9a815af52081 Implement a hack so the correct wxGUIEventLoop class will be used. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46120 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/cocoa/utils.mm b/src/cocoa/utils.mm index ea89c852cc..c6958cfa43 100644 --- a/src/cocoa/utils.mm +++ b/src/cocoa/utils.mm @@ -75,7 +75,10 @@ wxTimerImpl* wxGUIAppTraits::CreateTimerImpl(wxTimer* timer) wxEventLoop* wxGUIAppTraits::CreateEventLoop() { - return new wxEventLoop; + // MAJOR HACK: wxEventLoop is implemented in both core and base libraries. + // Fortunately, it has an empty implementation so an instance of the + // wxGUIEventLoop parent class will be fine until this issue is fixed. + return static_cast(new wxGUIEventLoop); } wxWindow* wxFindWindowAtPoint(const wxPoint& pt)