diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-06-22 02:18:48 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-06-22 02:18:48 +0800 |
commit | 3a9622dc01243eb969a06dc9087cc1913ddf9fe2 (patch) | |
tree | f7597fac77e100925524beb0b781eb76bed4838a | |
parent | e0617b2fc06f59bfcfbd1f03a4364ba12294e718 (diff) | |
download | gsoc2013-empathy-3a9622dc01243eb969a06dc9087cc1913ddf9fe2.tar gsoc2013-empathy-3a9622dc01243eb969a06dc9087cc1913ddf9fe2.tar.gz gsoc2013-empathy-3a9622dc01243eb969a06dc9087cc1913ddf9fe2.tar.bz2 gsoc2013-empathy-3a9622dc01243eb969a06dc9087cc1913ddf9fe2.tar.lz gsoc2013-empathy-3a9622dc01243eb969a06dc9087cc1913ddf9fe2.tar.xz gsoc2013-empathy-3a9622dc01243eb969a06dc9087cc1913ddf9fe2.tar.zst gsoc2013-empathy-3a9622dc01243eb969a06dc9087cc1913ddf9fe2.zip |
Fix typo causing warnings.
2007-06-21 Xavier Claessens <xclaesse@gmail.com>
* libempathy/empathy-tp-contact-list.c: Fix typo causing warnings.
svn path=/trunk/; revision=165
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | libempathy/empathy-tp-contact-list.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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); } |