diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-04-26 20:36:24 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-04-30 23:30:19 +0800 |
commit | aec33928b7b77fe64b0afdf13b5db126e7f5dfac (patch) | |
tree | 04236fce76b859c96dc977741106aa06e28aa977 /mail/e-mail-backend.c | |
parent | 2214b6049d9402f91567d1bea66259b29993ae9f (diff) | |
download | gsoc2013-evolution-aec33928b7b77fe64b0afdf13b5db126e7f5dfac.tar.gz gsoc2013-evolution-aec33928b7b77fe64b0afdf13b5db126e7f5dfac.tar.zst gsoc2013-evolution-aec33928b7b77fe64b0afdf13b5db126e7f5dfac.zip |
Adapt to Camel API changes.
Diffstat (limited to 'mail/e-mail-backend.c')
-rw-r--r-- | mail/e-mail-backend.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/mail/e-mail-backend.c b/mail/e-mail-backend.c index e2ca212627..c10a0eb61b 100644 --- a/mail/e-mail-backend.c +++ b/mail/e-mail-backend.c @@ -273,7 +273,6 @@ mail_backend_quit_requested_cb (EShell *shell, { CamelFolder *folder; GtkWindow *window; - guint32 unsent; gint response; window = e_shell_get_active_window (shell); @@ -288,11 +287,7 @@ mail_backend_quit_requested_cb (EShell *shell, if (folder == NULL) return; - if (camel_object_get ( - folder, NULL, CAMEL_FOLDER_VISIBLE, &unsent, 0) != 0) - return; - - if (unsent == 0) + if (folder->summary->visible_count == 0) return; response = e_alert_run_dialog_for_args ( |