commit | ef5cd05c3d68137a59a84acd418342532e3940c6 | [log] [tgz] |
---|---|---|
author | Jack Jansen <jack.jansen@cwi.nl> | Tue Sep 17 12:39:12 1996 +0000 |
committer | Jack Jansen <jack.jansen@cwi.nl> | Tue Sep 17 12:39:12 1996 +0000 |
tree | 544f8c9b00c6eae068d570ccd5f4025b6c242dd9 | |
parent | 4cb945454a91188823fd289a13e417bdd20050e2 [diff] [blame] |
Calling Application._quit() is now preferred over raising self.
diff --git a/Mac/Demo/example2/InterslipControl-2.py b/Mac/Demo/example2/InterslipControl-2.py index 4945864..90d57dd 100644 --- a/Mac/Demo/example2/InterslipControl-2.py +++ b/Mac/Demo/example2/InterslipControl-2.py
@@ -51,7 +51,7 @@ self.quititem = FrameWork.MenuItem(m, "Quit", "Q", self.quit) def quit(self, *args): - raise self + self._quit() def do_about(self, *args): f = Dlg.GetNewDialog(ID_ABOUT, -1)