mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
childproxy: fix signal handler signatures in class
When adding the name parameter, we forgot to add it here too.
This commit is contained in:
parent
19e5fc54b7
commit
6f6254d2b0
1 changed files with 2 additions and 2 deletions
|
@ -60,8 +60,8 @@ struct _GstChildProxyInterface
|
||||||
guint (*get_children_count) (GstChildProxy * parent);
|
guint (*get_children_count) (GstChildProxy * parent);
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
/* signals */
|
/* signals */
|
||||||
void (*child_added) (GstChildProxy * parent, GObject * child);
|
void (*child_added) (GstChildProxy * parent, GObject * child, const gchar * name);
|
||||||
void (*child_removed) (GstChildProxy * parent, GObject * child);
|
void (*child_removed) (GstChildProxy * parent, GObject * child, const gchar * name);
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
gpointer _gst_reserved[GST_PADDING];
|
gpointer _gst_reserved[GST_PADDING];
|
||||||
|
|
Loading…
Reference in a new issue