shell32: Fix cut & paste error.

This commit is contained in:
Vitaliy Margolen 2006-01-14 17:06:03 +01:00 committed by Alexandre Julliard
parent fa4a93f26b
commit a5074584a8
1 changed files with 2 additions and 2 deletions

View File

@ -512,7 +512,7 @@ DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR path,DWORD dwFileAttributes,
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 path,DWORD dwFileAttributes,
else
ret = FALSE;
IExtractIconA_Release(pei);
IExtractIconW_Release(pei);
}
}