childproxy: fix signal handler signatures in class

When adding the name parameter, we forgot to add it here too.
This commit is contained in:
Stefan Sauer 2012-06-11 20:34:00 +02:00
parent 19e5fc54b7
commit 6f6254d2b0

View 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];