diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-04-21 07:06:35 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:55 +0800 |
commit | 0be9b1f878c2f54a0c7f2f5024125813022d81b1 (patch) | |
tree | 29e3c02eb85eb6c0059d7160821f09930bbf9b44 /mail/e-mail-store.h | |
parent | 7b71f8f18c283032a9edf2f2a191e2c693cb2a61 (diff) | |
download | gsoc2013-evolution-0be9b1f878c2f54a0c7f2f5024125813022d81b1.tar.gz gsoc2013-evolution-0be9b1f878c2f54a0c7f2f5024125813022d81b1.tar.zst gsoc2013-evolution-0be9b1f878c2f54a0c7f2f5024125813022d81b1.zip |
Adapt to CamelService changes.
Diffstat (limited to 'mail/e-mail-store.h')
-rw-r--r-- | mail/e-mail-store.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/e-mail-store.h b/mail/e-mail-store.h index b120d14aef..a0326b2ded 100644 --- a/mail/e-mail-store.h +++ b/mail/e-mail-store.h @@ -25,6 +25,7 @@ #include <glib.h> #include <camel/camel.h> #include <mail/e-mail-session.h> +#include <libedataserver/e-account.h> G_BEGIN_DECLS @@ -33,13 +34,12 @@ void e_mail_store_init (EMailSession *session, void e_mail_store_add (EMailSession *session, CamelStore *store, const gchar *display_name); -CamelStore * e_mail_store_add_by_uri (EMailSession *session, - const gchar *uri, - const gchar *display_name); +CamelStore * e_mail_store_add_by_account (EMailSession *session, + EAccount *account); void e_mail_store_remove (EMailSession *session, CamelStore *store); -void e_mail_store_remove_by_uri (EMailSession *session, - const gchar *uri); +void e_mail_store_remove_by_account (EMailSession *session, + EAccount *account); void e_mail_store_foreach (GHFunc func, gpointer user_data); |