[pywin32-checkins] pywin32/com/win32comext/shell/src PyIShellIcon.cpp,1.1,1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-01-25 13:30:05
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/shell/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13944 Modified Files: PyIShellIcon.cpp Log Message: Correct args to GetIconOf Index: PyIShellIcon.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/src/PyIShellIcon.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PyIShellIcon.cpp 25 Jan 2005 09:42:32 -0000 1.1 --- PyIShellIcon.cpp 25 Jan 2005 13:29:53 -0000 1.2 *************** *** 36,40 **** UINT flags; int index; ! if ( !PyArg_ParseTuple(args, "O:GetIconOf", &obpidl) ) return NULL; BOOL bPythonIsHappy = TRUE; --- 36,40 ---- UINT flags; int index; ! if ( !PyArg_ParseTuple(args, "Oi:GetIconOf", &obpidl, &flags) ) return NULL; BOOL bPythonIsHappy = TRUE; |