mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
childproxy: fix indentation
This commit is contained in:
parent
38b96e6c8c
commit
bd625b8152
1 changed files with 14 additions and 14 deletions
|
@ -474,26 +474,26 @@ gst_child_proxy_base_init (gpointer g_class)
|
||||||
|
|
||||||
if (!initialized) {
|
if (!initialized) {
|
||||||
/* create interface signals and properties here. */
|
/* create interface signals and properties here. */
|
||||||
/**
|
/**
|
||||||
* GstChildProxy::child-added:
|
* GstChildProxy::child-added:
|
||||||
* @child_proxy: the #GstChildProxy
|
* @child_proxy: the #GstChildProxy
|
||||||
* @object: the #GObject that was added
|
* @object: the #GObject that was added
|
||||||
*
|
*
|
||||||
* Will be emitted after the @object was added to the @child_proxy.
|
* Will be emitted after the @object was added to the @child_proxy.
|
||||||
*/
|
*/
|
||||||
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,
|
||||||
child_added), NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE,
|
child_added), NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE,
|
||||||
1, GST_TYPE_OBJECT);
|
1, GST_TYPE_OBJECT);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstChildProxy::child-removed:
|
* GstChildProxy::child-removed:
|
||||||
* @child_proxy: the #GstChildProxy
|
* @child_proxy: the #GstChildProxy
|
||||||
* @object: the #GObject that was removed
|
* @object: the #GObject that was removed
|
||||||
*
|
*
|
||||||
* Will be emitted after the @object was removed from the @child_proxy.
|
* Will be emitted after the @object was removed from the @child_proxy.
|
||||||
*/
|
*/
|
||||||
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