[wpdev-commits] wolfpack uobject.cpp,1.122,1.123
Brought to you by:
rip,
thiagocorrea
|
From: <dar...@pr...> - 2004-01-26 13:36:56
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19993 Modified Files: uobject.cpp Log Message: Fixed a bug where ONSHOWTOOLTIP was called instead of ONCREATE Index: uobject.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/uobject.cpp,v retrieving revision 1.122 retrieving revision 1.123 diff -C2 -d -r1.122 -r1.123 *** uobject.cpp 22 Jan 2004 04:48:12 -0000 1.122 --- uobject.cpp 25 Jan 2004 01:07:49 -0000 1.123 *************** *** 730,734 **** PyObject *args = Py_BuildValue( "O&s", PyGetObjectObject, this, definition.latin1() ); ! result = cPythonScript::callChainedEventHandler( EVENT_SHOWTOOLTIP, scriptChain, args ); if( !result && global ) --- 730,734 ---- PyObject *args = Py_BuildValue( "O&s", PyGetObjectObject, this, definition.latin1() ); ! result = cPythonScript::callChainedEventHandler( EVENT_CREATE, scriptChain, args ); if( !result && global ) |