aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-account-editor.c
diff options
context:
space:
mode:
authorPeter Williams <peterw@ximian.com>2001-08-22 06:18:04 +0800
committerPeter Williams <peterw@src.gnome.org>2001-08-22 06:18:04 +0800
commitfc88bebfb31523a5c6dd280fb6287d0512e95b5f (patch)
tree7c3d58794c9ede7b1a5bfd65bda14d4b64879863 /mail/mail-account-editor.c
parent9f2496c37362dbb358e8c45553408683ad8acab2 (diff)
downloadgsoc2013-evolution-fc88bebfb31523a5c6dd280fb6287d0512e95b5f.tar
gsoc2013-evolution-fc88bebfb31523a5c6dd280fb6287d0512e95b5f.tar.gz
gsoc2013-evolution-fc88bebfb31523a5c6dd280fb6287d0512e95b5f.tar.bz2
gsoc2013-evolution-fc88bebfb31523a5c6dd280fb6287d0512e95b5f.tar.lz
gsoc2013-evolution-fc88bebfb31523a5c6dd280fb6287d0512e95b5f.tar.xz
gsoc2013-evolution-fc88bebfb31523a5c6dd280fb6287d0512e95b5f.tar.zst
gsoc2013-evolution-fc88bebfb31523a5c6dd280fb6287d0512e95b5f.zip
Honor the return value of mail_account_gui_save.
2001-08-21 Peter Williams <peterw@ximian.com> * mail-account-editor.c (apply_changes): Honor the return value of mail_account_gui_save. svn path=/trunk/; revision=12370
Diffstat (limited to 'mail/mail-account-editor.c')
-rw-r--r--mail/mail-account-editor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mail-account-editor.c b/mail/mail-account-editor.c
index 1f37511e96..26899f29d6 100644
--- a/mail/mail-account-editor.c
+++ b/mail/mail-account-editor.c
@@ -108,7 +108,8 @@ apply_changes (MailAccountEditor *editor)
return FALSE;
}
- mail_account_gui_save (editor->gui);
+ if (mail_account_gui_save (editor->gui))
+ return FALSE;
/* FIXME: uh, what the hell is this for? */
account = editor->gui->account;