aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimo.cecchi@collabora.co.uk>2009-07-30 06:44:36 +0800
committerCosimo Cecchi <cosimo.cecchi@collabora.co.uk>2009-07-30 06:44:36 +0800
commitbf6b5979152190e78ca913c6cfd0b91e204c60fd (patch)
tree782526d2ab4ebdd549cafa2827bf08dfce371649 /src
parent6d753b4f94a7fd35a727f5a2359087379e8288b1 (diff)
downloadgsoc2013-empathy-bf6b5979152190e78ca913c6cfd0b91e204c60fd.tar
gsoc2013-empathy-bf6b5979152190e78ca913c6cfd0b91e204c60fd.tar.gz
gsoc2013-empathy-bf6b5979152190e78ca913c6cfd0b91e204c60fd.tar.bz2
gsoc2013-empathy-bf6b5979152190e78ca913c6cfd0b91e204c60fd.tar.lz
gsoc2013-empathy-bf6b5979152190e78ca913c6cfd0b91e204c60fd.tar.xz
gsoc2013-empathy-bf6b5979152190e78ca913c6cfd0b91e204c60fd.tar.zst
gsoc2013-empathy-bf6b5979152190e78ca913c6cfd0b91e204c60fd.zip
Fix trailing whitespace
Diffstat (limited to 'src')
-rw-r--r--src/empathy-accounts-dialog.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index 95c3ac146..7a9dffb79 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -367,7 +367,7 @@ accounts_dialog_name_editing_started_cb (GtkCellRenderer *renderer,
if (priv->connecting_id)
g_source_remove (priv->connecting_id);
-
+
DEBUG ("Editing account name started; stopping flashing");
}
@@ -591,7 +591,7 @@ accounts_dialog_model_get_selected_settings (EmpathyAccountsDialog *dialog)
if (!gtk_tree_selection_get_selected (selection, &model, &iter))
return NULL;
-
+
gtk_tree_model_get (model, &iter,
COL_ACCOUNT_SETTINGS_POINTER, &settings, -1);
@@ -738,7 +738,7 @@ accounts_dialog_model_get_selected_account (EmpathyAccountsDialog *dialog)
if (!gtk_tree_selection_get_selected (selection, &model, &iter))
return NULL;
-
+
gtk_tree_model_get (model, &iter, COL_ACCOUNT_POINTER, &account, -1);
return account;
@@ -772,7 +772,7 @@ accounts_dialog_model_remove_selected (EmpathyAccountsDialog *dialog)
if (!gtk_tree_selection_get_selected (selection, &model, &iter))
return FALSE;
-
+
gtk_tree_model_get (model, &iter,
COL_ACCOUNT_POINTER, &account,
-1);
@@ -867,7 +867,7 @@ accounts_dialog_add_account (EmpathyAccountsDialog *dialog,
if (!accounts_dialog_get_account_iter (dialog, account, &iter))
gtk_list_store_append (GTK_LIST_STORE (model), &iter);
-
+
settings = empathy_account_settings_new_for_account (account);
gtk_list_store_set (GTK_LIST_STORE (model), &iter,
@@ -1202,7 +1202,7 @@ accounts_dialog_cms_ready_cb (EmpathyConnectionManagers *cms,
static void
accounts_dialog_build_ui (EmpathyAccountsDialog *dialog)
-{
+{
GtkBuilder *gui;
gchar *filename;
EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);