aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--libempathy/empathy-tp-contact-list.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b62a77f0f..5d0cc1a9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2007-06-21 Xavier Claessens <xclaesse@gmail.com>
+ * libempathy/empathy-tp-contact-list.c: Fix typo causing warnings.
+
+2007-06-21 Xavier Claessens <xclaesse@gmail.com>
+
* libempathy-gtk/empathy-contact-dialogs.c:
* libempathy-gtk/gossip-contact-list-store.c:
* libempathy-gtk/gossip-contact-list-view.c:
diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c
index d94eb071e..c435218e8 100644
--- a/libempathy/empathy-tp-contact-list.c
+++ b/libempathy/empathy-tp-contact-list.c
@@ -503,7 +503,7 @@ tp_contact_list_get_members (EmpathyContactList *list)
priv = GET_PRIV (list);
- g_list_foreach (priv->local_pending, (GFunc) g_object_ref, NULL);
+ g_list_foreach (priv->members, (GFunc) g_object_ref, NULL);
return g_list_copy (priv->members);
}