summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2012-06-11 20:34:00 +0200
committerStefan Sauer <ensonic@users.sf.net>2012-06-11 20:34:00 +0200
commit6f6254d2b0e7bdb4bb92e365b5dfeb87ea3a8d7b (patch)
tree72c19e11929caf2e306825e726316cc7ddf18ecb
parent19e5fc54b7ba6652129218c179e5075a1d3f7c09 (diff)
childproxy: fix signal handler signatures in class
When adding the name parameter, we forgot to add it here too.
-rw-r--r--gst/gstchildproxy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gstchildproxy.h b/gst/gstchildproxy.h
index 0abce64af..6937652bd 100644
--- a/gst/gstchildproxy.h
+++ b/gst/gstchildproxy.h
@@ -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];