+// Private helper method for wxLaunchDefaultBrowser
+bool wxDoLaunchDefaultBrowser(const wxString& url, int flags)
+{
+ // NOTE: We ignore the flags
+ return [[NSWorkspace sharedWorkspace] openURL: [NSURL URLWithString:wxNSStringWithWxString(url)]] != NO;
+}
+