[BROWSEUI][SHELLFIND] Allow to 'Open Containing Folder'

of a search result again.

The feature regressed by 0.4.13-dev-1133-g
a3ee648d8b

I chose the shorter solution of Brock Mammen instead
of the patch of Doug Lyons from PR1960.

Still many thanks to Doug Lyons for his encouragement
in creating a fix as well and performing
regression-testing.

I intend to merge that back into 0.4.13RCs as well.
This commit is contained in:
Joachim Henze 2019-10-12 15:44:58 +02:00
parent 96ef605f4b
commit cd2a274ef7

View file

@ -556,8 +556,10 @@ class CFindFolderContextMenu :
CComHeapPtr<ITEMIDLIST> folderPidl(ILCreateFromPathW(_ILGetPath(apidl[i])));
if (!folderPidl)
return E_OUTOFMEMORY;
LPCITEMIDLIST pidl = _ILGetFSPidl(apidl[i]);
SHOpenFolderAndSelectItems(folderPidl, 1, &pidl, 0);
CComHeapPtr<ITEMIDLIST> filePidl(ILCombine(folderPidl, _ILGetFSPidl(apidl[i])));
if (!filePidl)
return E_OUTOFMEMORY;
SHOpenFolderAndSelectItems(folderPidl, 1, &filePidl, 0);
}
return S_OK;
}