diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2012-06-11 20:34:00 +0200 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2012-06-11 20:34:00 +0200 |
commit | 6f6254d2b0e7bdb4bb92e365b5dfeb87ea3a8d7b (patch) | |
tree | 72c19e11929caf2e306825e726316cc7ddf18ecb | |
parent | 19e5fc54b7ba6652129218c179e5075a1d3f7c09 (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.h | 4 |
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]; |