From c29b376f15e610018da2349b5f2a786df62d5737 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 12 Dec 2008 09:40:24 +0000 Subject: can_add_contact_to_account: use empathy_contact_manager_can_add (Guillaume Desmottes) svn path=/trunk/; revision=1963 --- libempathy-gtk/empathy-contact-dialogs.c | 29 ++++++----------------------- 1 file changed, 6 insertions(+), 23 deletions(-) (limited to 'libempathy-gtk') diff --git a/libempathy-gtk/empathy-contact-dialogs.c b/libempathy-gtk/empathy-contact-dialogs.c index 7aae812a4..49746bafc 100644 --- a/libempathy-gtk/empathy-contact-dialogs.c +++ b/libempathy-gtk/empathy-contact-dialogs.c @@ -239,31 +239,14 @@ static gboolean can_add_contact_to_account (McAccount *account, gpointer user_data) { - MissionControl *mc; - TpConnectionStatus status; - McProfile *profile; - const gchar *protocol_name; - - mc = empathy_mission_control_new (); - status = mission_control_get_connection_status (mc, account, NULL); - g_object_unref (mc); - if (status != TP_CONNECTION_STATUS_CONNECTED) { - /* Account is disconnected */ - return FALSE; - } + EmpathyContactManager *mgr; + gboolean result; - profile = mc_account_get_profile (account); - protocol_name = mc_profile_get_protocol_name (profile); - if (strcmp (protocol_name, "local-xmpp") == 0) { - /* We can't add accounts to a XMPP LL connection - * FIXME: We should inspect the flags of the contact list group interface - */ - g_object_unref (profile); - return FALSE; - } + mgr = empathy_contact_manager_new (); + result = empathy_contact_manager_can_add (mgr, account); + g_object_unref (mgr); - g_object_unref (profile); - return TRUE; + return result; } static void -- cgit v1.2.3