From: Vadim Zeitlin Date: Wed, 8 Mar 2000 15:08:42 +0000 (+0000) Subject: warnings in wxCHeCK_MSG fixed X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/39d03faf4e69613abaa9b426946540c0939e3053 warnings in wxCHeCK_MSG fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6530 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp index 2bfaaf2d8a..86b1348379 100644 --- a/src/common/menucmn.cpp +++ b/src/common/menucmn.cpp @@ -212,7 +212,7 @@ wxMenuItem *wxMenuBase::DoRemove(wxMenuItem *item) bool wxMenuBase::Delete(wxMenuItem *item) { - wxCHECK_MSG( item, NULL, wxT("invalid item in wxMenu::Delete") ); + wxCHECK_MSG( item, FALSE, wxT("invalid item in wxMenu::Delete") ); return DoDelete(item); } @@ -232,7 +232,7 @@ bool wxMenuBase::DoDelete(wxMenuItem *item) bool wxMenuBase::Destroy(wxMenuItem *item) { - wxCHECK_MSG( item, NULL, wxT("invalid item in wxMenu::Destroy") ); + wxCHECK_MSG( item, FALSE, wxT("invalid item in wxMenu::Destroy") ); return DoDestroy(item); }