From d45db8b7326fc88017c7b7f3bc9b69e457a26143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Tue, 8 Feb 2005 22:23:05 +0000 Subject: [PATCH] Prefer SEE_MASK_IDLIST, since that one is actually implemented in shell32... svn path=/trunk/; revision=13471 --- reactos/subsys/system/explorer/taskbar/startmenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsys/system/explorer/taskbar/startmenu.cpp b/reactos/subsys/system/explorer/taskbar/startmenu.cpp index d630b8b2203..a113bfb1651 100644 --- a/reactos/subsys/system/explorer/taskbar/startmenu.cpp +++ b/reactos/subsys/system/explorer/taskbar/startmenu.cpp @@ -1254,7 +1254,7 @@ void StartMenu::ActivateEntry(int id, const ShellEntrySet& entries) SHELLEXECUTEINFO shexinfo; shexinfo.cbSize = sizeof(SHELLEXECUTEINFO); - shexinfo.fMask = SEE_MASK_INVOKEIDLIST; // SEE_MASK_IDLIST is also possible. + shexinfo.fMask = SEE_MASK_IDLIST; // SEE_MASK_INVOKEIDLIST is also possible. shexinfo.hwnd = hparent; shexinfo.lpVerb = NULL; shexinfo.lpFile = NULL;