shell32: Fix cut & past error.

Vitaliy Margolen wine-patch at kievinfo.com
Fri Jan 13 16:59:43 CST 2006


ChangeLog:
shell32: Fix cut & past error.

 dlls/shell32/shell32_main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
-------------- next part --------------
a68cd6f9df82f3cceddae8765a75261a1ddd4120
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);
         }
     }
 


More information about the wine-patches mailing list