From 122152451e1bc7aaff69d28b8950afa7848c6de6 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 3 Mar 2003 12:28:04 +0000 Subject: [PATCH] Don't call AEInteractWithUser unconditionally on a quit appleevent. The EasyDIalogs methods will call it if needed. Fixes #684975. --- Mac/Tools/IDE/PythonIDEMain.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Mac/Tools/IDE/PythonIDEMain.py b/Mac/Tools/IDE/PythonIDEMain.py index 44018897303..01969e95bda 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):