Comment this one out until we have a shim

Original commit message from CVS:
Comment this one out until we have a shim
This commit is contained in:
Wim Taymans 2001-12-15 22:48:38 +00:00
parent 68d82dd00c
commit 5048fbecd5

View file

@ -310,7 +310,6 @@ gst_bin_remove (GstBin * bin, GstElement * element)
{ {
gint state_idx = 0; gint state_idx = 0;
GstElementState state; GstElementState state;
gint sig;
g_return_if_fail (bin != NULL); g_return_if_fail (bin != NULL);
g_return_if_fail (GST_IS_BIN (bin)); g_return_if_fail (GST_IS_BIN (bin));
@ -330,9 +329,11 @@ gst_bin_remove (GstBin * bin, GstElement * element)
GST_ELEMENT_NAME (bin)); GST_ELEMENT_NAME (bin));
return; return;
} }
sig = g_signal_handlers_disconnect_matched (G_OBJECT (element), #ifdef USE_GLIB2
G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA, 0, 0, NULL, g_signal_handlers_disconnect_matched (G_OBJECT (element),
gst_bin_child_state_change, bin); G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA, 0, 0, NULL,
gst_bin_child_state_change, bin);
#endif
/* remove this element from the list of managed elements */ /* remove this element from the list of managed elements */
gst_bin_unset_element_sched (element); gst_bin_unset_element_sched (element);