From 1b410e5a8002d69d14b9510f3caff5968da848a2 Mon Sep 17 00:00:00 2001 From: ge0rdi Date: Sat, 6 Jun 2020 12:45:48 +0200 Subject: [PATCH] Fix compilation with VS16.6 --- Src/StartMenu/StartMenuDLL/Accessibility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/StartMenu/StartMenuDLL/Accessibility.cpp b/Src/StartMenu/StartMenuDLL/Accessibility.cpp index fe6b0e8..a7d57bf 100644 --- a/Src/StartMenu/StartMenuDLL/Accessibility.cpp +++ b/Src/StartMenu/StartMenuDLL/Accessibility.cpp @@ -182,7 +182,7 @@ HRESULT STDMETHODCALLTYPE CMenuAccessible::accSelect( long flagsSelect, VARIANT int index=varChild.lVal-1; if (index<0 || index>=(int)m_pOwner->m_Items.size()) return S_FALSE; - m_pOwner->ActivateItem(index,CMenuContainer::ACTIVATE_SELECT,NULL,false); + m_pOwner->ActivateItem(index,CMenuContainer::ACTIVATE_SELECT,NULL); } return S_OK; }