gst/gstchildproxy.c: Add FIXMEs for 0.11 to use GST_TYPE_OBJECT in the signature...
authorSebastian Dröge <slomo@circular-chaos.org>
Tue, 8 Jul 2008 09:04:25 +0000 (09:04 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Tue, 8 Jul 2008 09:04:25 +0000 (09:04 +0000)
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
gst/gstchildproxy.c

index a96e165..411c7c3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
+
+       * 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  <thijsvermeir@gmail.com>
 
        * gst/gstdebugutils.c:
index 5961579..f72b01e 100644 (file)
@@ -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,