aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-store.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-09-27 13:13:42 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-09-27 21:31:13 +0800
commite2b6ff7a6c1e1580c26ee0719b349151e8dad6fd (patch)
treed2d2ce8eb509717d412ad3171059e470ff0e7030 /mail/e-mail-store.h
parentc520043a094d81d222aa0c3e23b0035ddb89d0bf (diff)
downloadgsoc2013-evolution-e2b6ff7a6c1e1580c26ee0719b349151e8dad6fd.tar.gz
gsoc2013-evolution-e2b6ff7a6c1e1580c26ee0719b349151e8dad6fd.tar.zst
gsoc2013-evolution-e2b6ff7a6c1e1580c26ee0719b349151e8dad6fd.zip
Miscellaneous cleanups from the account-mgmt branch.
Reducing diff noise so I can see important changes easier when comparing branches. A few API changes, but nothing that affects functionality.
Diffstat (limited to 'mail/e-mail-store.h')
-rw-r--r--mail/e-mail-store.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/mail/e-mail-store.h b/mail/e-mail-store.h
index 5dca416e09..2c676d4fc4 100644
--- a/mail/e-mail-store.h
+++ b/mail/e-mail-store.h
@@ -23,22 +23,22 @@
#define E_MAIL_STORE_H
#include <camel/camel.h>
-#include <mail/e-mail-session.h>
+#include <mail/e-mail-backend.h>
#include <libedataserver/e-account.h>
G_BEGIN_DECLS
-void e_mail_store_init (EMailSession *session,
+void e_mail_store_init (EMailBackend *backend,
const gchar *data_dir);
-void e_mail_store_add (EMailSession *session,
+void e_mail_store_add (EMailBackend *backend,
CamelStore *store);
-CamelStore * e_mail_store_add_by_account (EMailSession *session,
+CamelStore * e_mail_store_add_by_account (EMailBackend *backend,
EAccount *account);
-void e_mail_store_remove (EMailSession *session,
+void e_mail_store_remove (EMailBackend *backend,
CamelStore *store);
-void e_mail_store_remove_by_account (EMailSession *session,
+void e_mail_store_remove_by_account (EMailBackend *backend,
EAccount *account);
-void e_mail_store_foreach (EMailSession *session,
+void e_mail_store_foreach (EMailBackend *backend,
GFunc func,
gpointer user_data);