]> git.0d.be Git - empathy.git/commitdiff
Simplified the code that checks if selected account has pending changes
authorJonathan Tellier <jonathan.tellier@gmail.com>
Fri, 28 Aug 2009 15:06:14 +0000 (11:06 -0400)
committerjtellier <jonathan.tellier@collabora.co.uk>
Fri, 28 Aug 2009 18:27:43 +0000 (14:27 -0400)
src/empathy-accounts-dialog.c

index 807c78b97fb4ba9c7f93dbc7e7c0e77cc5af701b..6cfc830d1778e8179d2df5ed2bc21fbb508dc6a2 100644 (file)
@@ -342,22 +342,18 @@ accounts_dialog_has_pending_change (EmpathyAccountsDialog *dialog,
   gboolean has_pending_changes;
   GtkTreeIter iter;
   GtkTreeModel *model;
-  EmpathyAccountSettings *settings;
+  GtkTreeSelection *selection;
   EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
 
-  model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->treeview));
-  settings = accounts_dialog_model_get_selected_settings (dialog);
+  selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->treeview));
 
-  if (accounts_dialog_get_settings_iter (dialog, settings, &iter))
+  if (gtk_tree_selection_get_selected (selection, &model, &iter))
     gtk_tree_model_get (model, &iter, COL_ACCOUNT_POINTER, account, -1);
 
   has_pending_changes = account != NULL && priv->setting_widget_object != NULL
       && empathy_account_widget_contains_pending_changes (
           priv->setting_widget_object);
 
-  if (settings != NULL)
-    g_object_unref (settings);
-
   return has_pending_changes;
 }