mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
[SHELL32]
- Fix check for GCS_VALIDATE in CDefaultContextMenu::GetCommandString. Patch by Jared Smudde. CORE-11183 svn path=/trunk/; revision=71291
This commit is contained in:
parent
d923444b3c
commit
7c3631a94b
1 changed files with 1 additions and 1 deletions
|
@ -1790,7 +1790,7 @@ CDefaultContextMenu::GetCommandString(
|
|||
if (g_StaticInvokeCmdMap[i].IntVerb == idCommand)
|
||||
{
|
||||
/* Validation just returns S_OK on a match */
|
||||
if (uFlags == GCS_VALIDATEA || uFlags == GCS_VALIDATEA)
|
||||
if (uFlags == GCS_VALIDATEA || uFlags == GCS_VALIDATEW)
|
||||
return S_OK;
|
||||
|
||||
/* Return a copy of the ANSI verb */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue