]> git.0d.be Git - empathy.git/commitdiff
can_add_contact_to_account: use empathy_contact_manager_can_add (Guillaume Desmottes)
authorXavier Claessens <xclaesse@src.gnome.org>
Fri, 12 Dec 2008 09:40:24 +0000 (09:40 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Fri, 12 Dec 2008 09:40:24 +0000 (09:40 +0000)
svn path=/trunk/; revision=1963

libempathy-gtk/empathy-contact-dialogs.c

index 7aae812a403a8aacfe87bffe9d22861315c23506..49746bafc62ddc19812da2ee4afe2b967e415c1b 100644 (file)
@@ -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