]> git.saurik.com Git - wxWidgets.git/commitdiff
make sure we have a default handling the quit command, see #12402
authorStefan Csomor <csomor@advancedconcepts.ch>
Fri, 31 May 2013 18:18:42 +0000 (18:18 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Fri, 31 May 2013 18:18:42 +0000 (18:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/cocoa/menuitem.mm

index 0c6c930e32d91c516851e6c8ad00452e127c3b3d..05179eca9e9da7ce3026aa20d6b37ed6208eb919 100644 (file)
@@ -311,6 +311,10 @@ bool wxMenuItemCocoaImpl::DoDefault()
         [theNSApplication unhideAllApplications:nil];
         handled=true;
     }
+    else if (menuid == wxApp::s_macExitMenuItemId)
+    {
+        wxTheApp->ExitMainLoop();
+    }
     return handled;
 }