From bd625b81525f574848a4dc106e0fc1ebf2f7050c Mon Sep 17 00:00:00 2001 From: Stefan Sauer Date: Fri, 30 Mar 2012 22:01:26 +0200 Subject: [PATCH] childproxy: fix indentation --- gst/gstchildproxy.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/gst/gstchildproxy.c b/gst/gstchildproxy.c index 2ff3684..4965e7f 100644 --- a/gst/gstchildproxy.c +++ b/gst/gstchildproxy.c @@ -474,26 +474,26 @@ gst_child_proxy_base_init (gpointer g_class) if (!initialized) { /* create interface signals and properties here. */ - /** - * GstChildProxy::child-added: - * @child_proxy: the #GstChildProxy - * @object: the #GObject that was added - * - * Will be emitted after the @object was added to the @child_proxy. - */ + /** + * GstChildProxy::child-added: + * @child_proxy: the #GstChildProxy + * @object: the #GObject that was added + * + * Will be emitted after the @object was added to the @child_proxy. + */ signals[CHILD_ADDED] = g_signal_new ("child-added", G_TYPE_FROM_CLASS (g_class), G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstChildProxyInterface, child_added), NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_OBJECT); - /** - * GstChildProxy::child-removed: - * @child_proxy: the #GstChildProxy - * @object: the #GObject that was removed - * - * Will be emitted after the @object was removed from the @child_proxy. - */ + /** + * GstChildProxy::child-removed: + * @child_proxy: the #GstChildProxy + * @object: the #GObject that was removed + * + * Will be emitted after the @object was removed from the @child_proxy. + */ 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