Fixed typo in PrivateExtractIconExW function.
This commit is contained in:
parent
6b2d22a0f6
commit
aba2579c3c
|
@ -669,12 +669,12 @@ UINT WINAPI PrivateExtractIconExW (
|
||||||
ret = ICO_ExtractIconExW(lpwstrFile, phIconSmall, nIndex, nIcons, cxsmicon,
|
ret = ICO_ExtractIconExW(lpwstrFile, phIconSmall, nIndex, nIcons, cxsmicon,
|
||||||
cysmicon, NULL, LR_DEFAULTCOLOR);
|
cysmicon, NULL, LR_DEFAULTCOLOR);
|
||||||
}
|
}
|
||||||
if (phIconLarge )
|
if (phIconLarge)
|
||||||
{
|
{
|
||||||
/* extract n large icons */
|
/* extract n large icons */
|
||||||
cxicon = GetSystemMetrics(SM_CXICON);
|
cxicon = GetSystemMetrics(SM_CXICON);
|
||||||
cyicon = GetSystemMetrics(SM_CYICON);
|
cyicon = GetSystemMetrics(SM_CYICON);
|
||||||
ret = ICO_ExtractIconExW(lpwstrFile, phIconSmall, nIndex, nIcons, cxicon,
|
ret = ICO_ExtractIconExW(lpwstrFile, phIconLarge, nIndex, nIcons, cxicon,
|
||||||
cyicon, NULL, LR_DEFAULTCOLOR);
|
cyicon, NULL, LR_DEFAULTCOLOR);
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue