X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bcb3a164471cf94a137f4cde22fd9868182f45e5..a201463482dc4417592ee014ff1a9706e8971dd6:/src/mac/carbon/checkbox.cpp diff --git a/src/mac/carbon/checkbox.cpp b/src/mac/carbon/checkbox.cpp index 7e42c3cd2b..e43aaa6dba 100644 --- a/src/mac/carbon/checkbox.cpp +++ b/src/mac/carbon/checkbox.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: checkbox.cpp +// Name: src/mac/carbon/checkbox.cpp // Purpose: wxCheckBox // Author: Stefan Csomor // Modified by: @@ -98,21 +98,21 @@ wxInt32 wxCheckBox::MacControlHit( WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENT switch (origState) { - case wxCHK_UNCHECKED: + case wxCHK_UNCHECKED: newState = wxCHK_CHECKED; break; - case wxCHK_CHECKED: + case wxCHK_CHECKED: // If the style flag to allow the user setting the undetermined state is set, // then set the state to undetermined; otherwise set state to unchecked. newState = Is3rdStateAllowedForUser() ? wxCHK_UNDETERMINED : wxCHK_UNCHECKED; break; - case wxCHK_UNDETERMINED: + case wxCHK_UNDETERMINED: newState = wxCHK_UNCHECKED; break; - default: + default: break; } @@ -136,11 +136,13 @@ bool wxBitmapCheckBox::Create(wxWindow *parent, const wxPoint& pos, const wxSize& size, long style, - const wxValidator& validator, + const wxValidator& wxVALIDATOR_PARAM(validator), const wxString& name) { SetName(name); +#if wxUSE_VALIDATORS SetValidator(validator); +#endif m_windowStyle = style; if (parent)