From: Kevin A. <ka...@us...> - 2004-05-05 16:54:07
|
Update of /cvsroot/pythoncard/PythonCard/samples/minimalStandalone In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28150/samples/minimalStandalone Modified Files: minimal.fr.rsrc.py minimal.py minimal.rsrc.py Log Message: removed on_menuFileExit_select, using Background on_exit_command instead Index: minimal.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/minimalStandalone/minimal.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** minimal.rsrc.py 29 Jul 2002 17:44:55 -0000 1.1 --- minimal.rsrc.py 5 May 2004 16:53:26 -0000 1.2 *************** *** 21,25 **** { 'type':'MenuItem', 'name':'menuFileExit', ! 'label':'E&xit\tAlt+X' } ] } ] }, --- 21,26 ---- { 'type':'MenuItem', 'name':'menuFileExit', ! 'label':'E&xit\tAlt+X', ! 'command':'exit' } ] } ] }, Index: minimal.fr.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/minimalStandalone/minimal.fr.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** minimal.fr.rsrc.py 29 Jul 2002 17:44:55 -0000 1.1 --- minimal.fr.rsrc.py 5 May 2004 16:53:26 -0000 1.2 *************** *** 21,25 **** { 'type':'MenuItem', 'name':'menuFileExit', ! 'label':'Q&uitter\tAlt+Q' } ] } ] }, --- 21,26 ---- { 'type':'MenuItem', 'name':'menuFileExit', ! 'label':'Q&uitter\tAlt+Q', ! 'command':'exit' } ] } ] }, Index: minimal.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/minimalStandalone/minimal.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** minimal.py 24 Apr 2004 21:09:19 -0000 1.4 --- minimal.py 5 May 2004 16:53:26 -0000 1.5 *************** *** 17,23 **** class Minimal(model.Background): ! ! def on_menuFileExit_select(self, event): ! self.close() --- 17,21 ---- class Minimal(model.Background): ! pass |