mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
Removed _object from g_signal_connect_object in order for this to compile under GLIB2
Original commit message from CVS: Removed _object from g_signal_connect_object in order for this to compile under GLIB2
This commit is contained in:
parent
06f8f1898f
commit
d707f3a0d5
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ gst_bin_add (GstBin *bin,
|
|||
|
||||
// set the element's parent and add the element to the bin's list of children
|
||||
gst_object_set_parent (GST_OBJECT (element), GST_OBJECT (bin));
|
||||
g_signal_connect_object (G_OBJECT (element), "state_change", gst_bin_child_state_change, G_OBJECT (bin));
|
||||
g_signal_connect (G_OBJECT (element), "state_change", gst_bin_child_state_change, G_OBJECT (bin));
|
||||
|
||||
bin->children = g_list_append (bin->children, element);
|
||||
bin->numchildren++;
|
||||
|
|
Loading…
Reference in a new issue