aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-tp-contact-list.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-29 21:16:15 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-29 21:24:17 +0800
commit67869e50ff885ea10280447edbe6ee22520e26cb (patch)
treeb26375d504fe358461175d47ba836384e2ade2bb /libempathy/empathy-tp-contact-list.c
parent4532530cec308a87223f46cd3724c1868849937f (diff)
downloadgsoc2013-empathy-67869e50ff885ea10280447edbe6ee22520e26cb.tar
gsoc2013-empathy-67869e50ff885ea10280447edbe6ee22520e26cb.tar.gz
gsoc2013-empathy-67869e50ff885ea10280447edbe6ee22520e26cb.tar.bz2
gsoc2013-empathy-67869e50ff885ea10280447edbe6ee22520e26cb.tar.lz
gsoc2013-empathy-67869e50ff885ea10280447edbe6ee22520e26cb.tar.xz
gsoc2013-empathy-67869e50ff885ea10280447edbe6ee22520e26cb.tar.zst
gsoc2013-empathy-67869e50ff885ea10280447edbe6ee22520e26cb.zip
remove old school get_all_groups
https://bugzilla.gnome.org/show_bug.cgi?id=665121
Diffstat (limited to 'libempathy/empathy-tp-contact-list.c')
-rw-r--r--libempathy/empathy-tp-contact-list.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c
index d3964d6bc..f116d15d3 100644
--- a/libempathy/empathy-tp-contact-list.c
+++ b/libempathy/empathy-tp-contact-list.c
@@ -1069,20 +1069,6 @@ tp_contact_list_get_pendings (EmpathyContactList *list)
}
static GList *
-tp_contact_list_get_all_groups (EmpathyContactList *list)
-{
- EmpathyTpContactListPriv *priv = GET_PRIV (list);
- GList *ret, *l;
-
- ret = g_hash_table_get_keys (priv->groups);
- for (l = ret; l; l = l->next) {
- l->data = g_strdup (l->data);
- }
-
- return ret;
-}
-
-static GList *
tp_contact_list_get_groups (EmpathyContactList *list,
EmpathyContact *contact)
{
@@ -1205,7 +1191,6 @@ tp_contact_list_iface_init (EmpathyContactListIface *iface)
iface->remove = tp_contact_list_remove;
iface->get_members = tp_contact_list_get_members;
iface->get_pendings = tp_contact_list_get_pendings;
- iface->get_all_groups = tp_contact_list_get_all_groups;
iface->get_groups = tp_contact_list_get_groups;
iface->add_to_group = tp_contact_list_add_to_group;
iface->remove_from_group = tp_contact_list_remove_from_group;