diff options
author | Steve Baker <steve@stevebaker.org> | 2001-08-13 19:00:13 +0000 |
---|---|---|
committer | Steve Baker <steve@stevebaker.org> | 2001-08-13 19:00:13 +0000 |
commit | 3cda4e2eaa73df412424f4c6d39bf1a94a733164 (patch) | |
tree | 042868b58ae3d773583b10d2b2300ef53ba4c2e8 /tests/sched | |
parent | f279992aff827575d545b4b8dff6748021636507 (diff) |
sync with the current CVS glib API
Original commit message from CVS:
sync with the current CVS glib API
Diffstat (limited to 'tests/sched')
-rw-r--r-- | tests/sched/runxml.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/sched/runxml.c b/tests/sched/runxml.c index 284e316f4..38a630912 100644 --- a/tests/sched/runxml.c +++ b/tests/sched/runxml.c @@ -54,8 +54,8 @@ int main(int argc,char *argv[]) src = gst_bin_get_by_name (GST_BIN (bin), "fakesrc"); if (src) { - g_signal_connectc (G_OBJECT(src), "handoff", - G_CALLBACK(buffer_handoff_src), bin,FALSE); + g_signal_connect (G_OBJECT(src), "handoff", + G_CALLBACK(buffer_handoff_src), bin); } else { g_print ("could not find src element\n"); @@ -64,8 +64,8 @@ int main(int argc,char *argv[]) sink = gst_bin_get_by_name (GST_BIN (bin), "fakesink"); if (sink) { - g_signal_connectc (G_OBJECT(sink), "handoff", - G_CALLBACK(buffer_handoff_sink), bin,FALSE); + g_signal_connect (G_OBJECT(sink), "handoff", + G_CALLBACK(buffer_handoff_sink), bin); } else { g_print ("could not find sink element\n"); |