From 6ef0a5f294d5445a7a5259493e7e1bacc1ce2afb Mon Sep 17 00:00:00 2001 From: Jehan Date: Tue, 15 Sep 2020 20:34:42 +0200 Subject: [PATCH] libgimpwidgets: minor alignment and indentation fixes. Fixing coding style from previous commit. --- libgimpwidgets/gimppropwidgets.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libgimpwidgets/gimppropwidgets.c b/libgimpwidgets/gimppropwidgets.c index 5662a8f29d..a518d2a208 100644 --- a/libgimpwidgets/gimppropwidgets.c +++ b/libgimpwidgets/gimppropwidgets.c @@ -119,7 +119,7 @@ gimp_prop_check_button_new (GObject *config, blurb = g_param_spec_get_blurb (param_spec); if (blurb) - gimp_help_set_help_data (button, blurb, NULL); + gimp_help_set_help_data (button, blurb, NULL); g_object_bind_property (config, property_name, button, "active", @@ -389,8 +389,8 @@ gimp_prop_int_combo_box_new (GObject *config, const gchar *property_name, GimpIntStore *store) { - GParamSpec *param_spec; - GtkWidget *combo_box; + GParamSpec *param_spec; + GtkWidget *combo_box; const gchar *blurb; g_return_val_if_fail (G_IS_OBJECT (config), NULL); @@ -408,7 +408,7 @@ gimp_prop_int_combo_box_new (GObject *config, blurb = g_param_spec_get_blurb (param_spec); if (blurb) - gimp_help_set_help_data (combo_box, blurb, NULL); + gimp_help_set_help_data (combo_box, blurb, NULL); g_object_bind_property (config, property_name, combo_box, "active", @@ -1982,8 +1982,8 @@ GtkWidget * gimp_prop_label_new (GObject *config, const gchar *property_name) { - GParamSpec *param_spec; - GtkWidget *label; + GParamSpec *param_spec; + GtkWidget *label; const gchar *blurb; g_return_val_if_fail (G_IS_OBJECT (config), NULL); @@ -1999,7 +1999,7 @@ gimp_prop_label_new (GObject *config, blurb = g_param_spec_get_blurb (param_spec); if (blurb) - gimp_help_set_help_data (label, blurb, NULL); + gimp_help_set_help_data (label, blurb, NULL); g_object_bind_property (config, property_name, label, "label", @@ -3960,7 +3960,7 @@ gimp_prop_icon_image_new (GObject *config, blurb = g_param_spec_get_blurb (param_spec); if (blurb) - gimp_help_set_help_data (image, blurb, NULL); + gimp_help_set_help_data (image, blurb, NULL); g_object_bind_property (config, property_name, image, "icon-name",