From: Robert Roebling Date: Thu, 9 Oct 2008 18:12:41 +0000 (+0000) Subject: Use g_signal_connect_after for wxRadioButton as well X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e9a7fde5683162aeeb76a364456b10b9f7c8c555 Use g_signal_connect_after for wxRadioButton as well git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56203 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/radiobut.cpp b/src/gtk/radiobut.cpp index 3e7cea5d98..93e92becbb 100644 --- a/src/gtk/radiobut.cpp +++ b/src/gtk/radiobut.cpp @@ -87,8 +87,8 @@ bool wxRadioButton::Create( wxWindow *parent, SetLabel(label); - g_signal_connect (m_widget, "clicked", - G_CALLBACK (gtk_radiobutton_clicked_callback), this); + g_signal_connect_after (m_widget, "clicked", + G_CALLBACK (gtk_radiobutton_clicked_callback), this); m_parent->DoAddChild( this );