Fixed typo in PrivateExtractIconExW function.

This commit is contained in:
Vitaliy Margolen 2003-03-10 19:04:39 +00:00 committed by Alexandre Julliard
parent 6b2d22a0f6
commit aba2579c3c
1 changed files with 2 additions and 2 deletions

View File

@ -669,12 +669,12 @@ UINT WINAPI PrivateExtractIconExW (
ret = ICO_ExtractIconExW(lpwstrFile, phIconSmall, nIndex, nIcons, cxsmicon,
cysmicon, NULL, LR_DEFAULTCOLOR);
}
if (phIconLarge )
if (phIconLarge)
{
/* extract n large icons */
cxicon = GetSystemMetrics(SM_CXICON);
cyicon = GetSystemMetrics(SM_CYICON);
ret = ICO_ExtractIconExW(lpwstrFile, phIconSmall, nIndex, nIcons, cxicon,
ret = ICO_ExtractIconExW(lpwstrFile, phIconLarge, nIndex, nIcons, cxicon,
cyicon, NULL, LR_DEFAULTCOLOR);
}
return ret;