aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-account-editor.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-06-17 06:42:09 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-06-17 06:42:09 +0800
commit65a3be6b57f4cf3eff782f0270596fe437852c7d (patch)
tree9732fbe0d8e6fc62dbca8bbeeaa1cb2b41026ab1 /mail/mail-account-editor.c
parent7395fd6ba14d1267ec54719687d461ac7707f8fb (diff)
downloadgsoc2013-evolution-65a3be6b57f4cf3eff782f0270596fe437852c7d.tar
gsoc2013-evolution-65a3be6b57f4cf3eff782f0270596fe437852c7d.tar.gz
gsoc2013-evolution-65a3be6b57f4cf3eff782f0270596fe437852c7d.tar.bz2
gsoc2013-evolution-65a3be6b57f4cf3eff782f0270596fe437852c7d.tar.lz
gsoc2013-evolution-65a3be6b57f4cf3eff782f0270596fe437852c7d.tar.xz
gsoc2013-evolution-65a3be6b57f4cf3eff782f0270596fe437852c7d.tar.zst
gsoc2013-evolution-65a3be6b57f4cf3eff782f0270596fe437852c7d.zip
Allow user's to "copy" drag & drop rather than just "move".
2001-06-16 Jeffrey Stedfast <fejj@ximian.com> * folder-browser.c (my_folder_browser_init): Allow user's to "copy" drag & drop rather than just "move". svn path=/trunk/; revision=10258
Diffstat (limited to 'mail/mail-account-editor.c')
-rw-r--r--mail/mail-account-editor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/mail-account-editor.c b/mail/mail-account-editor.c
index 26547915ac..fa706b5e0d 100644
--- a/mail/mail-account-editor.c
+++ b/mail/mail-account-editor.c
@@ -91,7 +91,7 @@ apply_changes (MailAccountEditor *editor)
{
MailConfigAccount *account;
int page = -1;
-
+
if (!mail_account_gui_identity_complete (editor->gui) ||
!mail_account_gui_management_complete (editor->gui))
page = 0;
@@ -99,16 +99,16 @@ apply_changes (MailAccountEditor *editor)
page = 1;
else if (!mail_account_gui_transport_complete (editor->gui))
page = 3;
-
+
if (page != -1) {
gtk_notebook_set_page (editor->notebook, page);
e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, _("You have not filled in all of the required information."));
return FALSE;
}
-
+
mail_account_gui_save (editor->gui);
account = editor->gui->account;
-
+
/* save any changes we may have */
mail_config_write ();
return TRUE;