From: Jack Jansen Date: Mon, 3 Mar 2003 12:28:04 +0000 (+0000) Subject: Don't call AEInteractWithUser unconditionally on a quit appleevent. The X-Git-Tag: v2.3c1~1611 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=122152451e1bc7aaff69d28b8950afa7848c6de6;p=python Don't call AEInteractWithUser unconditionally on a quit appleevent. The EasyDIalogs methods will call it if needed. Fixes #684975. --- diff --git a/Mac/Tools/IDE/PythonIDEMain.py b/Mac/Tools/IDE/PythonIDEMain.py index 4401889730..01969e95bd 100644 --- a/Mac/Tools/IDE/PythonIDEMain.py +++ b/Mac/Tools/IDE/PythonIDEMain.py @@ -156,8 +156,6 @@ class PythonIDE(Wapplication.Application): self.makehelpmenu() def quitevent(self, theAppleEvent, theReply): - from Carbon import AE - AE.AEInteractWithUser(50000000) self._quit() def suspendresume(self, onoff):