[evolution] EMAccountEditor: Remove dead code.



commit 88f8df25221a4396c2d814fb65166db951f3ae65
Author: Matthew Barnes <mbarnes redhat com>
Date:   Thu Nov 3 12:49:57 2011 -0400

    EMAccountEditor: Remove dead code.

 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 87ff312..e225f2d 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);
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]