[gtk+] GtkFlowBox::child-activated: fix param type in g_signal_connect



commit dbf1521ad4cd25ff7eaa66647fa4e6ab792259be
Author: Juan R. GarcĂ­a Blanco <juanrgar gmail com>
Date:   Wed Feb 5 22:10:05 2014 +0100

    GtkFlowBox::child-activated: fix param type in g_signal_connect
    
    Replace GTK_TYPE_WIDGET with more specific GTK_TYPE_FLOW_BOX_CHILD
    for GtkFlowBox::child-activated. This matches signature of
    child_activated slot in class struct.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=723716

 gtk/gtkflowbox.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkflowbox.c b/gtk/gtkflowbox.c
index 6c99fb3..cfaa1c9 100644
--- a/gtk/gtkflowbox.c
+++ b/gtk/gtkflowbox.c
@@ -3766,7 +3766,7 @@ gtk_flow_box_class_init (GtkFlowBoxClass *class)
                                            NULL, NULL,
                                            g_cclosure_marshal_VOID__OBJECT,
                                            G_TYPE_NONE, 1,
-                                           GTK_TYPE_WIDGET);
+                                           GTK_TYPE_FLOW_BOX_CHILD);
 
   /**
    * GtkFlowBox::selected-children-changed:


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]