[pywin32-checkins] pywin32/com/win32comext/shell/demos/servers shell_view.py,1.4,1.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2004-04-11 04:39:11
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/shell/demos/servers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22912 Modified Files: shell_view.py Log Message: Update for the new SHGetFileInfo result Index: shell_view.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/demos/servers/shell_view.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** shell_view.py 25 Nov 2003 02:02:47 -0000 1.4 --- shell_view.py 11 Apr 2004 04:25:36 -0000 1.5 *************** *** 181,185 **** typ, name = pidl.split('\0') flags = shellcon.SHGFI_ATTRIBUTES ! info = shell.SHGetFileInfo(name, 0, flags) hIcon, iIcon, dwAttr, name, typeName = info # All our items, even files, have sub-items --- 181,185 ---- typ, name = pidl.split('\0') flags = shellcon.SHGFI_ATTRIBUTES ! rc, info = shell.SHGetFileInfo(name, 0, flags) hIcon, iIcon, dwAttr, name, typeName = info # All our items, even files, have sub-items |