[glade] GladeIntro, GladePreferences: Replace some \t with spaces



commit 90b73edebb27153c96fad12dedab5db4ddc33b1e
Author: Juan Pablo Ugarte <juanpablougarte gmail com>
Date:   Fri Aug 14 10:55:57 2020 -0300

    GladeIntro, GladePreferences: Replace some \t with spaces

 src/glade-intro.h       |  2 +-
 src/glade-preferences.c | 32 ++++++++++++++++----------------
 2 files changed, 17 insertions(+), 17 deletions(-)
---
diff --git a/src/glade-intro.h b/src/glade-intro.h
index 48cd721f..20f00bcc 100644
--- a/src/glade-intro.h
+++ b/src/glade-intro.h
@@ -55,7 +55,7 @@ void        glade_intro_set_toplevel (GladeIntro *intro,
 
 void        glade_intro_script_add   (GladeIntro         *intro,
                                       const gchar        *name,
-                                     const gchar        *widget,
+                                      const gchar        *widget,
                                       const gchar        *text,
                                       GladeIntroPosition  position,
                                       gdouble             delay);
diff --git a/src/glade-preferences.c b/src/glade-preferences.c
index 311218e0..a3adf140 100644
--- a/src/glade-preferences.c
+++ b/src/glade-preferences.c
@@ -61,10 +61,10 @@ G_DEFINE_TYPE_WITH_PRIVATE (GladePreferences, glade_preferences, GTK_TYPE_DIALOG
  ********************************************************/
 static void
 autosave_toggled (GtkToggleButton  *button,
-                 GladePreferences *prefs)
+                  GladePreferences *prefs)
 {
   gtk_widget_set_sensitive (prefs->priv->autosave_spin,
-                           gtk_toggle_button_get_active (button));
+                            gtk_toggle_button_get_active (button));
 }
 
 static gboolean 
@@ -106,15 +106,15 @@ on_preferences_filechooserdialog_response (GtkDialog *dialog,
 
       if (canonical)
         {
-         GtkTreeIter iter;
+          GtkTreeIter iter;
 
           glade_catalog_add_path (canonical);
 
-         gtk_list_store_append (GTK_LIST_STORE (priv->catalog_path_store), &iter);
-         gtk_list_store_set (GTK_LIST_STORE (priv->catalog_path_store), &iter,
-                             COLUMN_PATH, display,
-                             COLUMN_CANONICAL_PATH, canonical,
-                             -1);
+          gtk_list_store_append (GTK_LIST_STORE (priv->catalog_path_store), &iter);
+          gtk_list_store_set (GTK_LIST_STORE (priv->catalog_path_store), &iter,
+                              COLUMN_PATH, display,
+                              COLUMN_CANONICAL_PATH, canonical,
+                              -1);
         }
 
       g_free (directory);
@@ -125,7 +125,7 @@ on_preferences_filechooserdialog_response (GtkDialog *dialog,
 
 static void
 remove_catalog_clicked (GtkButton        *button,
-                       GladePreferences *preferences)
+                        GladePreferences *preferences)
 {
   GladePreferencesPrivate *priv = preferences->priv;
   GtkTreeIter iter;
@@ -135,14 +135,14 @@ remove_catalog_clicked (GtkButton        *button,
       gchar *path = NULL;
 
       gtk_tree_model_get (priv->catalog_path_store, &iter,
-                         COLUMN_CANONICAL_PATH, &path,
-                         -1);
+                          COLUMN_CANONICAL_PATH, &path,
+                          -1);
 
       if (path)
-       {
-         glade_catalog_remove_path (path);
-         g_free (path);
-       }
+        {
+          glade_catalog_remove_path (path);
+          g_free (path);
+        }
 
       gtk_list_store_remove (GTK_LIST_STORE (priv->catalog_path_store), &iter);
     }
@@ -150,7 +150,7 @@ remove_catalog_clicked (GtkButton        *button,
 
 static void
 catalog_selection_changed (GtkTreeSelection *selection,
-                          GladePreferences *preferences)
+                           GladePreferences *preferences)
 {
   gboolean selected = gtk_tree_selection_get_selected (selection, NULL, NULL);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]