summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2020-08-14 10:55:57 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2020-08-17 19:19:48 -0300
commit90b73edebb27153c96fad12dedab5db4ddc33b1e (patch)
treeff7bf03d5ec089e1b567b618a4378f15622ced1d /src
parentf1a5e99726133e1fcf92b21c66282502435f51f9 (diff)
downloadglade-90b73edebb27153c96fad12dedab5db4ddc33b1e.tar.gz
GladeIntro, GladePreferences: Replace some \t with spaces
Diffstat (limited to 'src')
-rw-r--r--src/glade-intro.h2
-rw-r--r--src/glade-preferences.c32
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);