aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2007-06-22 02:18:48 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-06-22 02:18:48 +0800
commit3a9622dc01243eb969a06dc9087cc1913ddf9fe2 (patch)
treef7597fac77e100925524beb0b781eb76bed4838a /libempathy
parente0617b2fc06f59bfcfbd1f03a4364ba12294e718 (diff)
downloadgsoc2013-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
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-tp-contact-list.c2
1 files changed, 1 insertions, 1 deletions
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);
}