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)))
|