[empathy/gnome-2-32] factor out free_iters
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy/gnome-2-32] factor out free_iters
- Date: Thu, 18 Nov 2010 15:18:27 +0000 (UTC)
commit 381af9c51c0bf36989edfefb5ac1a02dbdde1d6f
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Thu Nov 18 14:50:30 2010 +0100
factor out free_iters
libempathy-gtk/empathy-individual-store.c | 17 ++++++++++-------
1 files changed, 10 insertions(+), 7 deletions(-)
---
diff --git a/libempathy-gtk/empathy-individual-store.c b/libempathy-gtk/empathy-individual-store.c
index d6dc53a..28735fa 100644
--- a/libempathy-gtk/empathy-individual-store.c
+++ b/libempathy-gtk/empathy-individual-store.c
@@ -327,6 +327,13 @@ individual_store_find_contact (EmpathyIndividualStore *self,
}
static void
+free_iters (GList *iters)
+{
+ g_list_foreach (iters, (GFunc) gtk_tree_iter_free, NULL);
+ g_list_free (iters);
+}
+
+static void
individual_store_remove_individual (EmpathyIndividualStore *self,
FolksIndividual *individual)
{
@@ -362,8 +369,7 @@ individual_store_remove_individual (EmpathyIndividualStore *self,
}
}
- g_list_foreach (iters, (GFunc) gtk_tree_iter_free, NULL);
- g_list_free (iters);
+ free_iters (iters);
}
static void
@@ -490,9 +496,7 @@ individual_store_contact_set_active (EmpathyIndividualStore *self,
}
}
- g_list_foreach (iters, (GFunc) gtk_tree_iter_free, NULL);
- g_list_free (iters);
-
+ free_iters (iters);
}
static void individual_store_contact_active_free (ShowActiveData *data);
@@ -786,8 +790,7 @@ individual_store_contact_update (EmpathyIndividualStore *self,
* timeout removes the user from the contact list, really we
* should remove the first timeout.
*/
- g_list_foreach (iters, (GFunc) gtk_tree_iter_free, NULL);
- g_list_free (iters);
+ free_iters (iters);
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]