Commit aba2579c authored by Vitaliy Margolen's avatar Vitaliy Margolen Committed by Alexandre Julliard

Fixed typo in PrivateExtractIconExW function.

parent 6b2d22a0
...@@ -669,12 +669,12 @@ UINT WINAPI PrivateExtractIconExW ( ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment