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.
This commit is contained in:
Sebastian Dröge 2008-07-08 09:04:25 +00:00
parent f9da89f5c3
commit e4b764d97f
2 changed files with 11 additions and 0 deletions

View file

@ -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:

View 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,