From: Kevin A. <ka...@us...> - 2004-05-05 16:54:06
|
Update of /cvsroot/pythoncard/PythonCard/samples/minimalTree In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28150/samples/minimalTree Modified Files: minimalTree.py minimalTree.rsrc.py Log Message: removed on_menuFileExit_select, using Background on_exit_command instead Index: minimalTree.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/minimalTree/minimalTree.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** minimalTree.rsrc.py 31 Aug 2003 17:23:35 -0000 1.1 --- minimalTree.rsrc.py 5 May 2004 16:53:27 -0000 1.2 *************** *** 16,19 **** --- 16,20 ---- 'name':'menuFileExit', 'label':'E&xit\tAlt+X', + 'command':'exit', }, ] Index: minimalTree.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/minimalTree/minimalTree.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** minimalTree.py 3 May 2004 16:14:08 -0000 1.5 --- minimalTree.py 5 May 2004 16:53:27 -0000 1.6 *************** *** 34,39 **** event.skip() - def on_menuFileExit_select(self, event): - self.close() if __name__ == '__main__': --- 34,37 ---- |