X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad60f9e7b66d326505592cc6dae034cab5826f3b..0738b901b17340f09766524b8d9d79e9ed1268e7:/src/gtk/checkbox.cpp?ds=inline diff --git a/src/gtk/checkbox.cpp b/src/gtk/checkbox.cpp index 17c3ff9548..82606be7ff 100644 --- a/src/gtk/checkbox.cpp +++ b/src/gtk/checkbox.cpp @@ -67,7 +67,7 @@ static void gtk_checkbox_toggled_callback(GtkWidget *widget, wxCheckBox *cb) } else { - wxFAIL_MSG(_T("3state wxCheckBox in unexpected state!")); + wxFAIL_MSG(wxT("3state wxCheckBox in unexpected state!")); } cb->GTKEnableEvents(); @@ -171,7 +171,7 @@ void wxCheckBox::SetValue( bool state ) if (state == GetValue()) return; - + GTKDisableEvents(); gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(m_widgetCheckbox), state );