mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
Fix EXE and SCR file icons. CORE-16533
This commit is contained in:
parent
bd25333e24
commit
cfdbccf937
2 changed files with 7 additions and 15 deletions
|
@ -138,21 +138,6 @@ HRESULT STDMETHODCALLTYPE CExtractIcon::SetNormalIcon(
|
|||
{
|
||||
TRACE("(%p, %s, %d)\n", this, debugstr_w(pszFile), iIcon);
|
||||
|
||||
if (lstrcmpiW(PathFindExtensionW(pszFile), L".exe") == 0)
|
||||
{
|
||||
if (!PrivateExtractIconExW(pszFile, 0, NULL, NULL, 1))
|
||||
{
|
||||
WCHAR szPath[MAX_PATH];
|
||||
GetModuleFileNameW(shell32_hInstance, szPath, _countof(szPath));
|
||||
DuplicateString(szPath, &normalIcon.file);
|
||||
if (!normalIcon.file)
|
||||
return E_OUTOFMEMORY;
|
||||
|
||||
normalIcon.index = -IDI_SHELL_EXE;
|
||||
return S_OK;
|
||||
}
|
||||
}
|
||||
|
||||
DuplicateString(pszFile, &normalIcon.file);
|
||||
if (!normalIcon.file)
|
||||
return E_OUTOFMEMORY;
|
||||
|
|
|
@ -312,6 +312,13 @@ HRESULT CFSExtractIcon_CreateInstance(IShellFolder * psf, LPCITEMIDLIST pidl, RE
|
|||
{
|
||||
ILGetDisplayNameExW(psf, pidl, wTemp, ILGDN_FORPARSING);
|
||||
icon_idx = 0;
|
||||
|
||||
INT ret = ExtractIconExW(wTemp, -1, NULL, NULL, 0);
|
||||
if (ret <= 0)
|
||||
{
|
||||
StringCbCopyW(wTemp, sizeof(wTemp), swShell32Name);
|
||||
icon_idx = -IDI_SHELL_EXE;
|
||||
}
|
||||
}
|
||||
|
||||
initIcon->SetNormalIcon(wTemp, icon_idx);
|
||||
|
|
Loading…
Reference in a new issue