X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8941fa8806ad22825b13367a0b48f889f177fe90..4b7ded8bad3a45ea4838e6d3f5d1957a134050ec:/samples/widgets/checkbox.cpp diff --git a/samples/widgets/checkbox.cpp b/samples/widgets/checkbox.cpp index 8b242623b2..34295c7ee8 100644 --- a/samples/widgets/checkbox.cpp +++ b/samples/widgets/checkbox.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Program: wxWindows Widgets Sample +// Program: wxWidgets Widgets Sample // Name: checkbox.cpp // Purpose: Part of the widgets sample showing wxCheckBox // Author: Dimitri Schoolwerth @@ -29,6 +29,7 @@ #include "wx/app.h" #include "wx/log.h" + #include "wx/bitmap.h" #include "wx/button.h" #include "wx/checkbox.h" @@ -147,8 +148,8 @@ void CheckBoxWidgetsPage::OnCheckBox(wxCommandEvent& event) }; wxCheckBoxState state = (wxCheckBoxState) event.GetInt(); - wxCHECK_RET( (state >= 0) && (state < WXSIZEOF(stateNames)), - "event.GetInt() returned an invalid wxCheckBoxState" ); + wxCHECK_RET( (state >= (wxCheckBoxState)0) && (state < (wxCheckBoxState)WXSIZEOF(stateNames)), + _T("event.GetInt() returned an invalid wxCheckBoxState") ); wxLogMessage(wxT("Checkbox now set to state: %s"), stateNames[state].c_str());