aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-accounts.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-06-11 06:44:42 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-06-11 06:44:42 +0800
commit84e8edcda2db9026375b70b1a645ad513da4c6a5 (patch)
treefa4d68c610b5ad97fb3964cc54005e8a8ac262ad /mail/mail-accounts.c
parent39e79a246459a6be63eb12b69607b3ba4c3cb270 (diff)
downloadgsoc2013-evolution-84e8edcda2db9026375b70b1a645ad513da4c6a5.tar
gsoc2013-evolution-84e8edcda2db9026375b70b1a645ad513da4c6a5.tar.gz
gsoc2013-evolution-84e8edcda2db9026375b70b1a645ad513da4c6a5.tar.bz2
gsoc2013-evolution-84e8edcda2db9026375b70b1a645ad513da4c6a5.tar.lz
gsoc2013-evolution-84e8edcda2db9026375b70b1a645ad513da4c6a5.tar.xz
gsoc2013-evolution-84e8edcda2db9026375b70b1a645ad513da4c6a5.tar.zst
gsoc2013-evolution-84e8edcda2db9026375b70b1a645ad513da4c6a5.zip
Comment out the code to add/remove the store to the folder-tree when it
2002-06-10 Jeffrey Stedfast <fejj@ximian.com> * mail-accounts.c (account_able_clicked): Comment out the code to add/remove the store to the folder-tree when it gets enabled/disabled. svn path=/trunk/; revision=17162
Diffstat (limited to 'mail/mail-accounts.c')
-rw-r--r--mail/mail-accounts.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/mail-accounts.c b/mail/mail-accounts.c
index 19e27ff142..7805e47715 100644
--- a/mail/mail-accounts.c
+++ b/mail/mail-accounts.c
@@ -316,12 +316,15 @@ account_able_clicked (GtkButton *button, gpointer user_data)
account->source->enabled = !account->source->enabled;
+#if 0
+ /* if the account got disabled, remove it from the folder-tree, otherwise add it to the folder-tree */
if (account->source && account->source->url) {
if (account->source->enabled)
mail_load_storage_by_uri (prefs->shell, account->source->url, account->name);
else
mail_remove_storage_by_uri (account->source->url);
}
+#endif
#if USE_ETABLE