From c3a3fdbca5129984d875b217d8204531ccf900ab Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 10 Apr 2012 13:15:07 +0200 Subject: 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 --- libempathy/empathy-tp-chat.c | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) (limited to 'libempathy/empathy-tp-chat.c') diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c index b13d097dd..4daac8c53 100644 --- a/libempathy/empathy-tp-chat.c +++ b/libempathy/empathy-tp-chat.c @@ -28,7 +28,6 @@ #include "empathy-tp-chat.h" #include "empathy-tp-contact-factory.h" -#include "empathy-contact-list.h" #include "empathy-request-util.h" #include "empathy-time.h" #include "empathy-utils.h" @@ -65,8 +64,6 @@ struct _EmpathyTpChatPrivate GSimpleAsyncResult *ready_result; }; -static void tp_chat_iface_init (EmpathyContactListIface *iface); - enum { PROP_0, @@ -89,9 +86,7 @@ enum static guint signals[LAST_SIGNAL]; -G_DEFINE_TYPE_WITH_CODE (EmpathyTpChat, empathy_tp_chat, TP_TYPE_TEXT_CHANNEL, - G_IMPLEMENT_INTERFACE (EMPATHY_TYPE_CONTACT_LIST, - tp_chat_iface_init)); +G_DEFINE_TYPE (EmpathyTpChat, empathy_tp_chat, TP_TYPE_TEXT_CHANNEL) static void tp_chat_set_delivery_status (EmpathyTpChat *self, @@ -216,14 +211,11 @@ empathy_tp_chat_add (EmpathyTpChat *self, } } -static GList * -tp_chat_get_members (EmpathyContactList *list) +GList * +empathy_tp_chat_get_members (EmpathyTpChat *self) { - EmpathyTpChat *self = (EmpathyTpChat *) list; GList *members = NULL; - g_return_val_if_fail (EMPATHY_IS_TP_CHAT (list), NULL); - if (self->priv->members) { members = g_list_copy (self->priv->members); @@ -1304,12 +1296,6 @@ empathy_tp_chat_init (EmpathyTpChat *self) g_str_hash, g_str_equal, g_free, NULL); } -static void -tp_chat_iface_init (EmpathyContactListIface *iface) -{ - iface->get_members = tp_chat_get_members; -} - EmpathyTpChat * empathy_tp_chat_new (TpSimpleClientFactory *factory, TpAccount *account, -- cgit v1.2.3