mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 16:43:08 +00:00
[SHELL32] Fix My Documents properties (#4906)
Tell the caller to run default action by returning S_FALSE in else case. CORE-17509
This commit is contained in:
parent
82cf6c2b06
commit
f0c20caf32
1 changed files with 5 additions and 0 deletions
|
@ -82,6 +82,11 @@ HRESULT CALLBACK RegFolderContextMenuCallback(IShellFolder *psf,
|
||||||
if (!SH_ShowRecycleBinProperties(L'C'))
|
if (!SH_ShowRecycleBinProperties(L'C'))
|
||||||
hr = E_FAIL;
|
hr = E_FAIL;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Tell the caller to run the default action */
|
||||||
|
hr = S_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
SHFree(pidlFolder);
|
SHFree(pidlFolder);
|
||||||
_ILFreeaPidl(apidl, cidl);
|
_ILFreeaPidl(apidl, cidl);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue