diff options
author | Morten Sørvig <msorvig@trolltech.com> | 2009-05-05 14:57:07 (GMT) |
---|---|---|
committer | Morten Sørvig <msorvig@trolltech.com> | 2009-05-05 14:57:07 (GMT) |
commit | 91938f0be5f8ba17f669b547b92941eb7063b9e3 (patch) | |
tree | 46eb70a323c8bfa98465adb72d2a52f0697ce9a9 | |
parent | e6d0c873c707bf076ba41924a445c0e1d343ac38 (diff) | |
download | Qt-91938f0be5f8ba17f669b547b92941eb7063b9e3.zip Qt-91938f0be5f8ba17f669b547b92941eb7063b9e3.tar.gz Qt-91938f0be5f8ba17f669b547b92941eb7063b9e3.tar.bz2 |
Make command-quit not terminate the program on Qt/Cocoa.
Instead instigate the quit by calling QApplication::quit(), using the code
that was already in place. This allows QApplication::exec() to return normally
and prevents resrouce leaks for objects created on the stack in main().
Reviewed-by: nrc
-rw-r--r-- | src/gui/kernel/qcocoaapplicationdelegate_mac.mm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gui/kernel/qcocoaapplicationdelegate_mac.mm b/src/gui/kernel/qcocoaapplicationdelegate_mac.mm index dad15d9..9a24645 100644 --- a/src/gui/kernel/qcocoaapplicationdelegate_mac.mm +++ b/src/gui/kernel/qcocoaapplicationdelegate_mac.mm @@ -183,21 +183,24 @@ static void cleanupCocoaApplicationDelegate() { Q_UNUSED(sender); // The reflection delegate gets precedence - NSApplicationTerminateReply reply = NSTerminateCancel; if (reflectionDelegate && [reflectionDelegate respondsToSelector:@selector(applicationShouldTerminate:)]) { return [reflectionDelegate applicationShouldTerminate:sender]; } if (qtPrivate->canQuit()) { - reply = NSTerminateNow; if (!startedQuit) { startedQuit = true; qAppInstance()->quit(); startedQuit = false; } } - return reply; + + // Prevent Cocoa from terminating the application, since this simply + // exits the program whithout allowing QApplication::exec() to return. + // The call to QApplication::quit() above will instead quit the + // application from the Qt side. + return NSTerminateCancel; } - (void)applicationDidFinishLaunching:(NSNotification *)aNotification |