From: Jaakko Salli Date: Mon, 14 Dec 2009 15:17:02 +0000 (+0000) Subject: Set correct m_state in wxPGCheckBoxEditor::SetValueToUnspecified() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cae41346c992f19c3515459257e25bb82cc7f8b9 Set correct m_state in wxPGCheckBoxEditor::SetValueToUnspecified() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62881 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/propgrid/editors.cpp b/src/propgrid/editors.cpp index bf24f496dd..3dfbb8a12c 100644 --- a/src/propgrid/editors.cpp +++ b/src/propgrid/editors.cpp @@ -1510,7 +1510,7 @@ void wxPGCheckBoxEditor::SetControlIntValue( wxPGProperty* WXUNUSED(property), w void wxPGCheckBoxEditor::SetValueToUnspecified( wxPGProperty* WXUNUSED(property), wxWindow* ctrl ) const { - ((wxSimpleCheckBox*)ctrl)->m_state = 0; + ((wxSimpleCheckBox*)ctrl)->m_state = wxSCB_STATE_UNSPECIFIED; ctrl->Refresh(); }