From: Vadim Zeitlin Date: Sat, 18 Sep 2004 09:59:01 +0000 (+0000) Subject: compilation fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c9cb79cbd693223d9079b91ad814bac39fa3a986?ds=inline compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29191 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/menuitem.cpp b/src/msw/menuitem.cpp index 0c44163a9a..e2063200cd 100644 --- a/src/msw/menuitem.cpp +++ b/src/msw/menuitem.cpp @@ -330,7 +330,7 @@ void wxMenuItem::Check(bool check) GetRealId(), MF_BYCOMMAND | flags) == (DWORD)-1 ) { - wxASSERT_MSG( _T("CheckMenuItem() failed, item not in the menu?") ); + wxFAIL_MSG( _T("CheckMenuItem() failed, item not in the menu?") ); } }