From 0f243af310c9772628bbeeab8131a8c09bb94dbc Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 28 Mar 2002 12:31:54 +0000 Subject: [PATCH] fixed a (harmless) BoundsChecker warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14836 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/menuitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/menuitem.cpp b/src/msw/menuitem.cpp index f7c1bb88cc..6e450bc973 100644 --- a/src/msw/menuitem.cpp +++ b/src/msw/menuitem.cpp @@ -255,7 +255,7 @@ void wxMenuItem::Check(bool check) start, // the first radio group item end, // the last one pos, // the one to check - MF_BYPOSITION | flags) ) + MF_BYPOSITION) ) { wxLogLastError(_T("CheckMenuRadioItem")); } -- 2.45.2