mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +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);
|
||||
/*< 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];
|
||||
|
|
Loading…
Reference in a new issue