* further optimization of parse_mcc_mapping_line, which still
[modest] / src / maemo / easysetup / modest-easysetup-provider-combo-box.c
index 48914a0..5f786b0 100644 (file)
@@ -142,7 +142,9 @@ easysetup_provider_combo_box_new (void)
        return g_object_new (EASYSETUP_TYPE_PROVIDER_COMBO_BOX, NULL);
 }
 
-void easysetup_provider_combo_box_fill (EasysetupProviderComboBox *combobox, ModestPresets *presets, GSList * list_country_id)
+void
+easysetup_provider_combo_box_fill (EasysetupProviderComboBox *combobox, ModestPresets *presets,
+                                  gint mcc)
 {      
        EasysetupProviderComboBoxPrivate *priv = PROVIDER_COMBO_BOX_GET_PRIVATE (combobox);
        
@@ -152,63 +154,49 @@ void easysetup_provider_combo_box_fill (EasysetupProviderComboBox *combobox, Mod
        
        GSList *provider_ids_used_already = NULL;
        
-       GSList *iter_ids = list_country_id;
-       while (iter_ids) {
-               const guint country_id = GPOINTER_TO_UINT (iter_ids->data);
+       /* Add the appropriate rows for this country, from the presets file: */
+       gchar ** provider_ids = NULL;
+       gchar ** provider_names = modest_presets_get_providers (presets, mcc, 
+                                                               TRUE /* include_globals */, &provider_ids);     
+       gchar ** iter_provider_names = provider_names;
+       gchar ** iter_provider_ids = provider_ids;
+       while(iter_provider_names && *iter_provider_names && iter_provider_ids && *iter_provider_ids) {
+               const gchar* provider_name = *iter_provider_names;
+               const gchar* provider_id = *iter_provider_ids;
                
-               /* Add the appropriate rows for this country, from the presets file: */
-               gchar ** provider_ids = NULL;
-               gchar ** provider_names = modest_presets_get_providers (presets, country_id, 
-                       TRUE /* include_globals */, &provider_ids);
-               
-               gchar ** iter_provider_names = provider_names;
-               gchar ** iter_provider_ids = provider_ids;
-               while(iter_provider_names && *iter_provider_names && iter_provider_ids && *iter_provider_ids)
-               {
-                       const gchar* provider_name = *iter_provider_names;
-                       if(!provider_name)
-                               continue;
-                               
-                       const gchar* provider_id = *iter_provider_ids;
-                       if(!provider_id)
-                               continue;
+               /* Prevent duplicate providers: */
+               if (g_slist_find_custom (provider_ids_used_already, 
+                                        provider_id, (GCompareFunc)strcmp) == NULL) {
+                       /* printf("debug: provider_name=%s\n", provider_name); */
+
+                       /* Add the row: */
+                       GtkTreeIter iter;
+                       gtk_list_store_append (liststore, &iter);
                        
-                       /* Prevent duplicate providers: */
-                       if (g_slist_find_custom (provider_ids_used_already, 
-                               provider_id, (GCompareFunc)strcmp) == NULL) {
-                               /* printf("debug: provider_name=%s\n", provider_name); */
+                       gtk_list_store_set(liststore, &iter, 
+                                          MODEL_COL_ID, provider_id, 
+                                          MODEL_COL_NAME, provider_name, -1);
                        
-                               /* Add the row: */
-                               GtkTreeIter iter;
-                               gtk_list_store_append (liststore, &iter);
-                               
-                               gtk_list_store_set(liststore, &iter, 
-                                       MODEL_COL_ID, provider_id, 
-                                       MODEL_COL_NAME, provider_name, -1);
-                               
-                               provider_ids_used_already = g_slist_append (
-                                       provider_ids_used_already, (gpointer)g_strdup (provider_id));
-                       }
-                               
+                       provider_ids_used_already = g_slist_prepend (
+                               provider_ids_used_already, (gpointer)g_strdup (provider_id));
+               }
+
                        ++iter_provider_names;
-                       ++iter_provider_ids;    
+                       ++iter_provider_ids;
                }
-               
-               /* Free the result of modest_presets_get_providers()
-                * as specified by its documentation: */
-               g_strfreev (provider_names);
-               g_strfreev (provider_ids);
-               
-               iter_ids = g_slist_next (iter_ids);
-       }
-       
+
+       /* Free the result of modest_presets_get_providers()
+        * as specified by its documentation: */
+       g_strfreev (provider_names);
+       g_strfreev (provider_ids);
+
        
        /* Add the "Other" item: */
        /* Note that ID 0 means "Other" for us: */
        /* TODO: We need a Logical ID for this text. */
        GtkTreeIter iter;
-       gtk_list_store_append (liststore, &iter);
-       gtk_list_store_set (liststore, &iter, MODEL_COL_ID, 0, MODEL_COL_NAME, _("Other..."), -1);
+       gtk_list_store_prepend (liststore, &iter);
+       gtk_list_store_set (liststore, &iter, MODEL_COL_ID, 0, MODEL_COL_NAME, _("mcen_va_serviceprovider_other"), -1);
        
        /* Select the "Other" item: */
        gtk_combo_box_set_active_iter (GTK_COMBO_BOX (combobox), &iter);