mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 16:30:26 +00:00
[SHELL32]
- All shell folders must have the IPersistFolder. Hence their Initialize method is supposed to succeed for them to actually work. svn path=/trunk/; revision=68884
This commit is contained in:
parent
3f45fd516a
commit
5d50aaffdd
2 changed files with 2 additions and 2 deletions
|
@ -256,7 +256,7 @@ HRESULT WINAPI CMyDocsFolder::Initialize(LPCITEMIDLIST pidl)
|
|||
{
|
||||
TRACE ("(%p)->(%p)\n", this, pidl);
|
||||
|
||||
return E_NOTIMPL;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT WINAPI CMyDocsFolder::GetCurFolder(LPITEMIDLIST *pidl)
|
||||
|
|
|
@ -494,7 +494,7 @@ HRESULT WINAPI CNetFolder::Initialize(LPCITEMIDLIST pidl)
|
|||
{
|
||||
TRACE("(%p)->(%p)\n", this, pidl);
|
||||
|
||||
return E_NOTIMPL;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
|
|
Loading…
Reference in a new issue