diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-10 19:15:07 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-10 19:31:49 +0800 |
commit | c3a3fdbca5129984d875b217d8204531ccf900ab (patch) | |
tree | 4c3c338aa975430b8203216e0f5f918069e15f55 /libempathy-gtk | |
parent | 869f0b954dc31895406b3766cd432d0029afbb5b (diff) | |
download | gsoc2013-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 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index 14404bfe3..6dd3733d0 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -2012,7 +2012,7 @@ chat_input_key_press_event_cb (GtkWidget *widget, } is_start_of_buffer = gtk_text_iter_is_start (&start); - list = empathy_contact_list_get_members (EMPATHY_CONTACT_LIST (priv->tp_chat)); + list = empathy_tp_chat_get_members (priv->tp_chat); g_completion_add_items (priv->completion, list); nick = gtk_text_buffer_get_text (buffer, &start, ¤t, FALSE); |