childproxy: fix signal handler signatures in class
authorStefan Sauer <ensonic@users.sf.net>
Mon, 11 Jun 2012 18:34:00 +0000 (20:34 +0200)
committerStefan Sauer <ensonic@users.sf.net>
Mon, 11 Jun 2012 18:34:00 +0000 (20:34 +0200)
When adding the name parameter, we forgot to add it here too.

gst/gstchildproxy.h

index 0abce64..6937652 100644 (file)
@@ -60,8 +60,8 @@ struct _GstChildProxyInterface
   guint     (*get_children_count) (GstChildProxy * parent);
   /*< private >*/
   /* signals */
-  void      (*child_added)        (GstChildProxy * parent, GObject * child);
-  void      (*child_removed)      (GstChildProxy * parent, GObject * child);
+  void      (*child_added)        (GstChildProxy * parent, GObject * child, const gchar * name);
+  void      (*child_removed)      (GstChildProxy * parent, GObject * child, const gchar * name);
 
   /*< private >*/
   gpointer _gst_reserved[GST_PADDING];