From: Kevin A. <ka...@us...> - 2004-05-05 16:54:03
|
Update of /cvsroot/pythoncard/PythonCard/samples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28150/samples Modified Files: samples.py samples.rsrc.py Log Message: removed on_menuFileExit_select, using Background on_exit_command instead Index: samples.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/samples.rsrc.py,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** samples.rsrc.py 2 May 2004 02:40:43 -0000 1.56 --- samples.rsrc.py 5 May 2004 16:53:24 -0000 1.57 *************** *** 18,21 **** --- 18,22 ---- 'name':'menuFileExit', 'label':'E&xit\tAlt-X', + 'command':'exit', }, ] Index: samples.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/samples.py,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** samples.py 25 Apr 2004 06:26:49 -0000 1.55 --- samples.py 5 May 2004 16:53:24 -0000 1.56 *************** *** 63,69 **** self.readme = '' - def on_menuFileExit_select(self, event): - self.close() - def getCommandLineArgs(self): args = [] --- 63,66 ---- |