From e4b764d97fdabc8bae5381ffcf43f4e473f3e4d2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 8 Jul 2008 09:04:25 +0000 Subject: [PATCH] gst/gstchildproxy.c: Add FIXMEs for 0.11 to use GST_TYPE_OBJECT in the signature of the the child-added / -removed si... Original commit message from CVS: * gst/gstchildproxy.c: (gst_child_proxy_base_init): Add FIXMEs for 0.11 to use GST_TYPE_OBJECT in the signature of the the child-added / -removed signals as GstChildProxy only supports GstObjects. --- ChangeLog | 7 +++++++ gst/gstchildproxy.c | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index a96e165..411c7c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-07-08 Sebastian Dröge + + * gst/gstchildproxy.c: (gst_child_proxy_base_init): + Add FIXMEs for 0.11 to use GST_TYPE_OBJECT in the signature + of the the child-added / -removed signals as GstChildProxy + only supports GstObjects. + 2008-07-07 Thijs Vermeir * gst/gstdebugutils.c: diff --git a/gst/gstchildproxy.c b/gst/gstchildproxy.c index 5961579..f72b01e 100644 --- a/gst/gstchildproxy.c +++ b/gst/gstchildproxy.c @@ -449,6 +449,8 @@ gst_child_proxy_base_init (gpointer g_class) * * Will be emitted after the @object was added to the @child_proxy. */ + /* FIXME 0.11: use GST_TYPE_OBJECT as GstChildProxy only + * supports GstObjects */ signals[CHILD_ADDED] = g_signal_new ("child-added", G_TYPE_FROM_CLASS (g_class), G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstChildProxyInterface, @@ -462,6 +464,8 @@ gst_child_proxy_base_init (gpointer g_class) * * Will be emitted after the @object was removed from the @child_proxy. */ + /* FIXME 0.11: use GST_TYPE_OBJECT as GstChildProxy only + * supports GstObjects */ signals[CHILD_REMOVED] = g_signal_new ("child-removed", G_TYPE_FROM_CLASS (g_class), G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstChildProxyInterface, -- 2.7.4