X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3a4721954c4542ab95f784662a903db55d790091..c92e136d9a2d9919fc747d109610cd4d16c6cc91:/src/cocoa/utils.mm diff --git a/src/cocoa/utils.mm b/src/cocoa/utils.mm index ea89c852cc..bc764949b5 100644 --- a/src/cocoa/utils.mm +++ b/src/cocoa/utils.mm @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: src/cocoa/utils.cpp +// Name: src/cocoa/utils.mm // Purpose: Various utilities // Author: David Elliott // Created: 2003/??/?? @@ -73,9 +73,9 @@ wxTimerImpl* wxGUIAppTraits::CreateTimerImpl(wxTimer* timer) return new wxCocoaTimerImpl(timer); } -wxEventLoop* wxGUIAppTraits::CreateEventLoop() +wxEventLoopBase* wxGUIAppTraits::CreateEventLoop() { - return new wxEventLoop; + return new wxGUIEventLoop; } wxWindow* wxFindWindowAtPoint(const wxPoint& pt) @@ -109,7 +109,7 @@ void wxBell() } // Private helper method for wxLaunchDefaultBrowser -bool wxCocoaLaunchDefaultBrowser(const wxString& url, int flags) +bool wxDoLaunchDefaultBrowser(const wxString& url, int flags) { // NOTE: We ignore the flags return [[NSWorkspace sharedWorkspace] openURL: [NSURL URLWithString:wxNSStringWithWxString(url)]] != NO;