mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 20:43:25 +00:00
[SHELL] IPersistFolder2::GetCurFolder takes a PIDLIST_ABSOLUTE*. CORE-16385
This commit is contained in:
parent
4328daa6e4
commit
b90c24d640
28 changed files with 28 additions and 28 deletions
|
@ -233,7 +233,7 @@ HRESULT WINAPI CDefaultContextMenu::Initialize(const DEFCONTEXTMENU *pdcm, LPFND
|
|||
CComPtr<IPersistFolder2> pf = NULL;
|
||||
if (SUCCEEDED(m_psf->QueryInterface(IID_PPV_ARG(IPersistFolder2, &pf))))
|
||||
{
|
||||
if (FAILED(pf->GetCurFolder(reinterpret_cast<LPITEMIDLIST*>(&m_pidlFolder))))
|
||||
if (FAILED(pf->GetCurFolder(&m_pidlFolder)))
|
||||
ERR("GetCurFolder failed\n");
|
||||
}
|
||||
TRACE("pidlFolder %p\n", m_pidlFolder);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue