Update of /cvsroot/pythoncard/PythonCard/components
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9199/components
Modified Files:
iehtmlwindow.py
Log Message:
added WXMAC workaround for menu _dispatch
fixed function._name references to be __name__
Index: iehtmlwindow.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/components/iehtmlwindow.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** iehtmlwindow.py 5 May 2004 03:51:54 -0000 1.16
--- iehtmlwindow.py 5 May 2004 20:27:09 -0000 1.17
***************
*** 194,198 ****
if handler:
if 0:
! print " binding", self.name, eventClass.name, handler._name, eventClass.id
# KEA 2004-05-02
# change to just using the method directly, Handler class not needed
--- 194,198 ----
if handler:
if 0:
! print " binding", self.name, eventClass.name, handler.__name__, eventClass.id
# KEA 2004-05-02
# change to just using the method directly, Handler class not needed
|