[pywin32-checkins] pywin32/Pythonwin win32uiExt.h,1.7,1.8
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-01-10 05:39:04
|
Update of /cvsroot/pywin32/pywin32/Pythonwin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26822 Modified Files: win32uiExt.h Log Message: autoduck correction. Index: win32uiExt.h =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32uiExt.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** win32uiExt.h 10 Jan 2006 04:26:07 -0000 1.7 --- win32uiExt.h 10 Jan 2006 05:38:56 -0000 1.8 *************** *** 225,229 **** afx_msg void OnTimer(UINT nIDEvent) { // @pyvirtual void|PyCWnd|OnTimer|Called for the WM_TIMER message. ! // @pyparm <int>|nIDEvent||Specifies the identifier of the timer. CVirtualHelper helper( "OnTimer", this ); if (!helper.HaveHandler() || !helper.call(static_cast<int>(nIDEvent))) --- 225,229 ---- afx_msg void OnTimer(UINT nIDEvent) { // @pyvirtual void|PyCWnd|OnTimer|Called for the WM_TIMER message. ! // @pyparm int|nIDEvent||Specifies the identifier of the timer. CVirtualHelper helper( "OnTimer", this ); if (!helper.HaveHandler() || !helper.call(static_cast<int>(nIDEvent))) |