From 0aa81614accf1c4f7f804418ce0243e72824be52 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 13 Feb 2015 22:56:00 +0000 Subject: [PATCH] install-plugins: fix indentation and add Since marker Forgot to squash this into the actual patch before pushing. --- gst-libs/gst/pbutils/install-plugins.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/pbutils/install-plugins.c b/gst-libs/gst/pbutils/install-plugins.c index bd17843..8ea1689 100644 --- a/gst-libs/gst/pbutils/install-plugins.c +++ b/gst-libs/gst/pbutils/install-plugins.c @@ -397,9 +397,12 @@ struct _GstInstallPluginsContext * * If set, this option will be passed to the installer via a * --interaction=[show-confirm-search|hide-confirm-search] command line option. + * + * Since: 1.6 */ void -gst_install_plugins_context_set_confirm_search (GstInstallPluginsContext * ctx, gboolean confirm_search) +gst_install_plugins_context_set_confirm_search (GstInstallPluginsContext * ctx, + gboolean confirm_search) { g_return_if_fail (ctx != NULL); @@ -594,7 +597,8 @@ gst_install_plugins_spawn_child (const gchar * const *details, /* add any additional command line args from the context */ if (ctx != NULL && ctx->confirm_search) { - g_ptr_array_add (arr, g_strdup_printf ("--interaction=%s", ctx->confirm_search)); + g_ptr_array_add (arr, g_strdup_printf ("--interaction=%s", + ctx->confirm_search)); } if (ctx != NULL && ctx->desktop_id != NULL) { g_ptr_array_add (arr, g_strdup_printf ("--desktop-id=%s", ctx->desktop_id)); -- 2.7.4