diff options
-rw-r--r-- | mail/em-account-editor.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 87ff312fe1..e225f2df13 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -1498,32 +1498,11 @@ emae_service_url_path_changed (EMAccountEditorService *service, void (*setval)(CamelURL *, const gchar *), GtkWidget *widget) { - GtkComboBox *dropdown; - gint id; - GtkTreeModel *model; - GtkTreeIter iter; - CamelServiceAuthType *authtype; - CamelURL *url = emae_account_url (service->emae, emae_service_info[service->type].account_uri_key); const gchar *text = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); setval (url, (text && text[0]) ? text : NULL); - if (text && text[0] && setval == camel_url_set_user) { - dropdown = service->authtype; - if (dropdown) { - id = gtk_combo_box_get_active (dropdown); - if (id != -1) { - model = gtk_combo_box_get_model (dropdown); - if (gtk_tree_model_iter_nth_child (model, &iter, NULL, id)) { - gtk_tree_model_get (model, &iter, 1, &authtype, -1); - if (authtype) - camel_url_set_authmech (url, authtype->authproto); - } - } - } - } - emae_uri_changed (service, url); camel_url_free (url); } |