From: Kevin A. <ka...@us...> - 2004-05-04 17:16:19
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4638 Modified Files: event.py Log Message: switched to new style event binding and dispatch Index: event.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/event.py,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** event.py 3 May 2004 02:56:33 -0000 1.65 --- event.py 4 May 2004 17:15:41 -0000 1.66 *************** *** 480,483 **** --- 480,485 ---- class TextEnterEvent( Event ) : name = 'textEnter' + binding = wx.EVT_TEXT_ENTER + id = wx.wxEVT_COMMAND_TEXT_ENTER |