diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-24 12:40:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-24 12:40:49 +0800 |
commit | 174c942e0945a2017f0c479883dce2950e42e786 (patch) | |
tree | 0011078b4121d5c6c200825b0ab1bb1c4cefd519 /mail/em-utils.c | |
parent | ce7537b495a3788d9bda4b6a783a5c3d95309926 (diff) | |
download | gsoc2013-evolution-174c942e0945a2017f0c479883dce2950e42e786.tar.gz gsoc2013-evolution-174c942e0945a2017f0c479883dce2950e42e786.tar.zst gsoc2013-evolution-174c942e0945a2017f0c479883dce2950e42e786.zip |
Split store and local folder management out from shell backend.
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r-- | mail/em-utils.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c index 1c3c6be40e..dffa11b132 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -72,13 +72,14 @@ #include "e-util/e-dialog-utils.h" #include "e-util/e-error.h" #include "widgets/misc/e-alert-activity.h" +#include "widgets/misc/e-attachment.h" #include "em-utils.h" #include "em-composer-utils.h" #include "em-format-quote.h" #include "em-account-editor.h" -#include "e-attachment.h" +#include "e-mail-local.h" #include "e-mail-shell-backend.h" static void emu_save_part_done (CamelMimePart *part, gchar *name, gint done, gpointer data); @@ -1382,8 +1383,8 @@ em_utils_folder_is_templates (CamelFolder *folder, const gchar *uri) gint is = FALSE; gchar *templates_uri; - local_templates_folder = e_mail_shell_backend_get_folder ( - global_mail_shell_backend, E_MAIL_FOLDER_TEMPLATES); + local_templates_folder = + e_mail_local_get_folder (E_MAIL_FOLDER_TEMPLATES); if (folder == local_templates_folder) return TRUE; @@ -1433,8 +1434,8 @@ em_utils_folder_is_drafts(CamelFolder *folder, const gchar *uri) gint is = FALSE; gchar *drafts_uri; - local_drafts_folder = e_mail_shell_backend_get_folder ( - global_mail_shell_backend, E_MAIL_FOLDER_DRAFTS); + local_drafts_folder = + e_mail_local_get_folder (E_MAIL_FOLDER_DRAFTS); if (folder == local_drafts_folder) return TRUE; @@ -1484,8 +1485,7 @@ em_utils_folder_is_sent(CamelFolder *folder, const gchar *uri) gint is = FALSE; gchar *sent_uri; - local_sent_folder = e_mail_shell_backend_get_folder ( - global_mail_shell_backend, E_MAIL_FOLDER_SENT); + local_sent_folder = e_mail_local_get_folder (E_MAIL_FOLDER_SENT); if (folder == local_sent_folder) return TRUE; @@ -1530,8 +1530,8 @@ em_utils_folder_is_outbox(CamelFolder *folder, const gchar *uri) { CamelFolder *local_outbox_folder; - local_outbox_folder = e_mail_shell_backend_get_folder ( - global_mail_shell_backend, E_MAIL_FOLDER_OUTBOX); + local_outbox_folder = + e_mail_local_get_folder (E_MAIL_FOLDER_OUTBOX); /* <Highlander>There can be only one.</Highlander> */ return folder == local_outbox_folder; |