[pywin32-checkins] pywin32/com/win32comext/shell/src PyIShellFolder.cpp,1.7,1.8
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2004-07-02 04:11:04
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/shell/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29756 Modified Files: PyIShellFolder.cpp Log Message: Default value for ParseDisplayName attributes param should be 0, not -1 Index: PyIShellFolder.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/src/PyIShellFolder.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PyIShellFolder.cpp 26 May 2004 09:37:10 -0000 1.7 --- PyIShellFolder.cpp 2 Jul 2004 04:10:53 -0000 1.8 *************** *** 46,50 **** ULONG pchEaten = (ULONG)-1; ITEMIDLIST *ppidl; ! ULONG pdwAttributes = -1; if ( !PyArg_ParseTuple(args, "lOO|l:ParseDisplayName", &hwndOwner, &obpbcReserved, &oblpszDisplayName, &pdwAttributes) ) --- 46,50 ---- ULONG pchEaten = (ULONG)-1; ITEMIDLIST *ppidl; ! ULONG pdwAttributes = 0; if ( !PyArg_ParseTuple(args, "lOO|l:ParseDisplayName", &hwndOwner, &obpbcReserved, &oblpszDisplayName, &pdwAttributes) ) |