From e9a7fde5683162aeeb76a364456b10b9f7c8c555 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Thu, 9 Oct 2008 18:12:41 +0000 Subject: [PATCH] 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 --- src/gtk/radiobut.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ); -- 2.50.0