Update of /cvsroot/pythoncard/PythonCard/tools/textEditor
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16207/tools/textEditor
Modified Files:
textEditor.pyw textEditor.rsrc.py
Log Message:
changed from on_menuFileExit_select to on_exit_command Background method
Index: textEditor.rsrc.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/tools/textEditor/textEditor.rsrc.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** textEditor.rsrc.py 28 May 2002 00:34:22 -0000 1.16
--- textEditor.rsrc.py 30 Apr 2004 16:26:12 -0000 1.17
***************
*** 46,50 ****
{ 'type':'MenuItem',
'name':'menuFileExit',
! 'label':'E&xit\tAlt+X' } ] },
# most of the edit menu was copied from the searchexplorer sample
{'type':'Menu',
--- 46,51 ----
{ 'type':'MenuItem',
'name':'menuFileExit',
! 'label':'E&xit\tAlt+X',
! 'command':'exit', } ] },
# most of the edit menu was copied from the searchexplorer sample
{'type':'Menu',
Index: textEditor.pyw
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/tools/textEditor/textEditor.pyw,v
retrieving revision 1.71
retrieving revision 1.72
diff -C2 -d -r1.71 -r1.72
*** textEditor.pyw 29 Apr 2004 23:59:23 -0000 1.71
--- textEditor.pyw 30 Apr 2004 16:26:12 -0000 1.72
***************
*** 352,358 ****
self.printer.PageSetup()
- def on_menuFileExit_select(self, event):
- self.close()
-
# the following was copied and pasted from the searchexplorer sample
--- 352,355 ----
|