Module: wine Branch: refs/heads/master Commit: a5074584a86725ef25526f09436fc45ebb3e70dc URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=a5074584a86725ef25526f09...
Author: Vitaliy Margolen wine-patch@kievinfo.com Date: Sat Jan 14 17:06:03 2006 +0100
shell32: Fix cut & paste error.
---
dlls/shell32/shell32_main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c index 8febaaa..90488ca 100644 --- a/dlls/shell32/shell32_main.c +++ b/dlls/shell32/shell32_main.c @@ -512,7 +512,7 @@ DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR UINT uDummy,uFlags;
hr = IShellFolder_GetUIObjectOf(psfParent, 0, 1, - (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconA, + (LPCITEMIDLIST*)&pidlLast, &IID_IExtractIconW, &uDummy, (LPVOID*)&pei); if (SUCCEEDED(hr)) { @@ -525,7 +525,7 @@ DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR else ret = FALSE;
- IExtractIconA_Release(pei); + IExtractIconW_Release(pei); } }