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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=122152451e1bc7aaff69d28b8950afa7848c6de6;p=thirdparty%2FPython%2Fcpython.git 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 440188973033..01969e95bdae 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):