From a296925676f10385929fee162610d49f1caff373 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 3 May 2012 11:02:39 +0200 Subject: empathy_tp_chat_is_invited: return a TpContact for the inviter https://bugzilla.gnome.org/show_bug.cgi?id=675229 --- src/empathy-event-manager.c | 35 +++++------------------------------ 1 file changed, 5 insertions(+), 30 deletions(-) (limited to 'src/empathy-event-manager.c') diff --git a/src/empathy-event-manager.c b/src/empathy-event-manager.c index 8f26feb66..b3465cea1 100644 --- a/src/empathy-event-manager.c +++ b/src/empathy-event-manager.c @@ -846,27 +846,6 @@ display_invite_room_dialog (EventManagerApproval *approval) g_object_unref (window); } -static void -event_manager_muc_invite_got_contact_cb (TpConnection *connection, - EmpathyContact *contact, - const GError *error, - gpointer user_data, - GObject *object) -{ - EventManagerApproval *approval = (EventManagerApproval *) user_data; - - if (error != NULL) - { - DEBUG ("Error: %s", error->message); - } - else - { - approval->contact = g_object_ref (contact); - } - - display_invite_room_dialog (approval); -} - static void event_manager_ft_got_contact_cb (TpConnection *connection, EmpathyContact *contact, @@ -979,7 +958,7 @@ approve_channels (TpSimpleApprover *approver, if (tp_proxy_has_interface (channel, TP_IFACE_CHANNEL_INTERFACE_GROUP)) { /* Are we in local-pending ? */ - TpHandle inviter; + TpContact *inviter; if (empathy_tp_chat_is_invited (tp_chat, &inviter)) { @@ -987,17 +966,13 @@ approve_channels (TpSimpleApprover *approver, DEBUG ("Have been invited to %s. Ask user if he wants to accept", tp_channel_get_identifier (channel)); - if (inviter != 0) - { - empathy_tp_contact_factory_get_from_handle (connection, - inviter, event_manager_muc_invite_got_contact_cb, - approval, NULL, G_OBJECT (self)); - } - else + if (inviter != NULL) { - display_invite_room_dialog (approval); + approval->contact = empathy_contact_dup_from_tp_contact ( + inviter); } + display_invite_room_dialog (approval); goto out; } -- cgit v1.2.3