From: Vadim Zeitlin Date: Thu, 28 Mar 2002 12:31:54 +0000 (+0000) Subject: fixed a (harmless) BoundsChecker warning X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0f243af310c9772628bbeeab8131a8c09bb94dbc?ds=inline fixed a (harmless) BoundsChecker warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14836 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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")); }