From: Jose Dapena Paz Date: Tue, 31 Jul 2007 15:44:38 +0000 (+0000) Subject: * src/maemo/easysetup/modest-easysetup-provider-combo-box.c: X-Git-Tag: git_migration_finished~2682 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=15228caeb8df1140e75a6830ff47bd76ecc5c06f * src/maemo/easysetup/modest-easysetup-provider-combo-box.c: * Set "Other..." option as the first in providers combobox. * Use the logical id (fixes NB#64683). pmo-trunk-r2875 --- diff --git a/src/maemo/easysetup/modest-easysetup-provider-combo-box.c b/src/maemo/easysetup/modest-easysetup-provider-combo-box.c index b3b7a41..a7871ca 100644 --- a/src/maemo/easysetup/modest-easysetup-provider-combo-box.c +++ b/src/maemo/easysetup/modest-easysetup-provider-combo-box.c @@ -215,8 +215,8 @@ void easysetup_provider_combo_box_fill (EasysetupProviderComboBox *combobox, Mod /* 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);