]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-profile-chooser.c
Renamed empathy_profile_chooser_get_selected to empathy_profile_chooser_dup_selected...
[empathy.git] / libempathy-gtk / empathy-profile-chooser.c
index 6c46b6cc56148734e79459e8a6b544b57aececb8..897e38344fbdd358f1ee3705cfbac6c4a19b1e90 100644 (file)
@@ -38,7 +38,7 @@ enum {
 };
 
 McProfile*
-empathy_profile_chooser_get_selected (GtkWidget *widget)
+empathy_profile_chooser_dup_selected (GtkWidget *widget)
 {
        GtkTreeModel *model;
        GtkTreeIter   iter;
@@ -118,12 +118,13 @@ profile_chooser_sort_func (GtkTreeModel *model,
 GtkWidget *
 empathy_profile_chooser_new (void)
 {
-       GList           *profiles, *l;
+       GList           *profiles, *l, *seen;
        GtkListStore    *store;
        GtkCellRenderer *renderer;
        GtkWidget       *combo_box;
        GtkTreeIter      iter;
        gboolean         iter_set = FALSE;
+       McManager       *btf_cm;
 
        /* set up combo box with new store */
        store = gtk_list_store_new (COL_COUNT,
@@ -146,10 +147,13 @@ empathy_profile_chooser_new (void)
                                        "text", COL_LABEL,
                                        NULL);
 
+       btf_cm = mc_manager_lookup ("butterfly");
        profiles = mc_profiles_list ();
+       seen = NULL;
        for (l = profiles; l; l = l->next) {
-               McProfile  *profile;
-               McProtocol *protocol;
+               McProfile   *profile;
+               McProtocol  *protocol;
+               const gchar *unique_name;
 
                profile = l->data;
 
@@ -161,6 +165,17 @@ empathy_profile_chooser_new (void)
                }
                g_object_unref (protocol);
 
+               /* Skip MSN-Haze if we have butterfly */
+               unique_name = mc_profile_get_unique_name (profile);
+               if (btf_cm && strcmp (unique_name, "msn-haze") == 0) {
+                       continue;
+               }
+
+               if (g_list_find_custom (seen, unique_name, (GCompareFunc) strcmp)) {
+                       continue;
+               }
+               seen = g_list_append (seen, (char*) unique_name);
+
                gtk_list_store_insert_with_values (store, &iter, 0,
                                                   COL_ICON, mc_profile_get_icon_name (profile),
                                                   COL_LABEL, mc_profile_get_display_name (profile),
@@ -169,6 +184,12 @@ empathy_profile_chooser_new (void)
                 iter_set = TRUE;
        }
 
+       g_list_free (seen);
+
+       if (btf_cm) {
+               g_object_unref (btf_cm);
+       }
+
        /* Set the profile sort function */
        gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (store),
                                         COL_PROFILE,