mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
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:
parent
f9da89f5c3
commit
e4b764d97f
2 changed files with 11 additions and 0 deletions
|
@ -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>
|
2008-07-07 Thijs Vermeir <thijsvermeir@gmail.com>
|
||||||
|
|
||||||
* gst/gstdebugutils.c:
|
* gst/gstdebugutils.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.
|
* 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] =
|
signals[CHILD_ADDED] =
|
||||||
g_signal_new ("child-added", G_TYPE_FROM_CLASS (g_class),
|
g_signal_new ("child-added", G_TYPE_FROM_CLASS (g_class),
|
||||||
G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstChildProxyInterface,
|
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.
|
* 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] =
|
signals[CHILD_REMOVED] =
|
||||||
g_signal_new ("child-removed", G_TYPE_FROM_CLASS (g_class),
|
g_signal_new ("child-removed", G_TYPE_FROM_CLASS (g_class),
|
||||||
G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstChildProxyInterface,
|
G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstChildProxyInterface,
|
||||||
|
|
Loading…
Reference in a new issue