]> git.saurik.com Git - wxWidgets.git/commitdiff
Use g_signal_connect_after for wxRadioButton as well
authorRobert Roebling <robert@roebling.de>
Thu, 9 Oct 2008 18:12:41 +0000 (18:12 +0000)
committerRobert Roebling <robert@roebling.de>
Thu, 9 Oct 2008 18:12:41 +0000 (18:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56203 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/radiobut.cpp

index 3e7cea5d980c2445d4cb66da783fe7d26d55944e..93e92becbb64528184d047804b52f659618ed1bc 100644 (file)
@@ -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 );