[pywin32-checkins] /hgroot/pywin32/pywin32: CMINVOKECOMMANDINFO.lpVerb is always pl...
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <pyw...@li...> - 2012-10-04 17:50:15
|
changeset fe79b4ae1b7e in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=fe79b4ae1b7e summary: CMINVOKECOMMANDINFO.lpVerb is always plain char (bug #3574188) diffstat: com/win32comext/shell/src/shell.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (12 lines): diff -r 4363710e738e -r fe79b4ae1b7e com/win32comext/shell/src/shell.cpp --- a/com/win32comext/shell/src/shell.cpp Mon Oct 01 17:08:19 2012 -0400 +++ b/com/win32comext/shell/src/shell.cpp Thu Oct 04 13:48:35 2012 -0400 @@ -583,7 +583,7 @@ return FALSE; if (!PyWinObject_AsHANDLE(obhIcon, (HANDLE *)&pci->hIcon)) return FALSE; - if (!PyWinObject_AsResourceId(obVerb, (char **)&pci->lpVerb)) + if (!PyWinObject_AsResourceIdA(obVerb, (char **)&pci->lpVerb)) return FALSE; return TRUE; } |