aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-04-10 19:15:07 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-04-10 19:31:49 +0800
commitc3a3fdbca5129984d875b217d8204531ccf900ab (patch)
tree4c3c338aa975430b8203216e0f5f918069e15f55 /src
parent869f0b954dc31895406b3766cd432d0029afbb5b (diff)
downloadgsoc2013-empathy-c3a3fdbca5129984d875b217d8204531ccf900ab.tar
gsoc2013-empathy-c3a3fdbca5129984d875b217d8204531ccf900ab.tar.gz
gsoc2013-empathy-c3a3fdbca5129984d875b217d8204531ccf900ab.tar.bz2
gsoc2013-empathy-c3a3fdbca5129984d875b217d8204531ccf900ab.tar.lz
gsoc2013-empathy-c3a3fdbca5129984d875b217d8204531ccf900ab.tar.xz
gsoc2013-empathy-c3a3fdbca5129984d875b217d8204531ccf900ab.tar.zst
gsoc2013-empathy-c3a3fdbca5129984d875b217d8204531ccf900ab.zip
implement empathy_tp_chat_get_members as a method on TpChat
That means EmpathyTpChat doesn't have to implement the EmpathyContactList interface any more. https://bugzilla.gnome.org/show_bug.cgi?id=673821
Diffstat (limited to 'src')
-rw-r--r--src/empathy-invite-participant-dialog.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/empathy-invite-participant-dialog.c b/src/empathy-invite-participant-dialog.c
index fd5bd8f76..ad3e85a53 100644
--- a/src/empathy-invite-participant-dialog.c
+++ b/src/empathy-invite-participant-dialog.c
@@ -146,8 +146,7 @@ filter_individual (EmpathyContactChooser *chooser,
return FALSE;
/* Filter out contacts which are already in the chat */
- members = empathy_contact_list_get_members (EMPATHY_CONTACT_LIST (
- self->priv->tp_chat));
+ members = empathy_tp_chat_get_members (self->priv->tp_chat);
for (l = members; l != NULL; l = g_list_next (l))
{