From: Kevin A. <ka...@us...> - 2004-05-05 16:54:05
|
Update of /cvsroot/pythoncard/PythonCard/samples/jabberChat In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28150/samples/jabberChat Modified Files: chatWindow.py chatWindow.rsrc.py groupChatWindow.rsrc.py jabberChat.py jabberChat.rsrc.py Log Message: removed on_menuFileExit_select, using Background on_exit_command instead Index: chatWindow.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/jabberChat/chatWindow.py,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** chatWindow.py 25 Apr 2004 23:12:46 -0000 1.21 --- chatWindow.py 5 May 2004 16:53:26 -0000 1.22 *************** *** 151,155 **** self.components.fldInput.text = "" ! def on_menuFileExit_select(self, event): self.close() --- 151,155 ---- self.components.fldInput.text = "" ! def on_menuFileClose_select(self, event): self.close() Index: jabberChat.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/jabberChat/jabberChat.py,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** jabberChat.py 24 Apr 2004 21:09:18 -0000 1.29 --- jabberChat.py 5 May 2004 16:53:26 -0000 1.30 *************** *** 305,311 **** event.skip() - def on_menuFileExit_select(self, event): - self.close() - def on_changeStatus_command(self, event): self.jabberConnection.sendPresence(event.target.label) --- 305,308 ---- Index: jabberChat.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/jabberChat/jabberChat.rsrc.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** jabberChat.rsrc.py 27 Jan 2003 22:28:01 -0000 1.4 --- jabberChat.rsrc.py 5 May 2004 16:53:26 -0000 1.5 *************** *** 27,30 **** --- 27,31 ---- 'name':'menuFileExit', 'label':'E&xit\tAlt+X', + 'command':'exit', }, ] Index: groupChatWindow.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/jabberChat/groupChatWindow.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** groupChatWindow.rsrc.py 25 Dec 2002 23:31:21 -0000 1.1 --- groupChatWindow.rsrc.py 5 May 2004 16:53:26 -0000 1.2 *************** *** 20,24 **** }, {'type':'MenuItem', ! 'name':'menuFileExit', 'label':'Close', }, --- 20,24 ---- }, {'type':'MenuItem', ! 'name':'menuFileClose', 'label':'Close', }, Index: chatWindow.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/jabberChat/chatWindow.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** chatWindow.rsrc.py 19 Aug 2002 22:34:00 -0000 1.1 --- chatWindow.rsrc.py 5 May 2004 16:53:26 -0000 1.2 *************** *** 20,24 **** }, {'type':'MenuItem', ! 'name':'menuFileExit', 'label':'Close', }, --- 20,24 ---- }, {'type':'MenuItem', ! 'name':'menuFileClose', 'label':'Close', }, |