From a9cfed5938aef37d95c009411f965ebc185547c1 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 16 Dec 2011 10:40:37 -0500 Subject: Avoid passing EMailBackend as much as possible. More mail API churn... reversing some previous API decisions. I've made some key API changes to EMailSession on the account-mgmt branch which should allow for this, and will hopefully also benefit the "email-factory" branch. EMailBackend barely needs to exist anymore, except as the owner of EMailSession. For several low-level functions, we replace its EMailBackend parameter with EMailSession and EAlertSink parameters; the latter so it can still pass user alerts up the chain. --- mail/mail-send-recv.h | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'mail/mail-send-recv.h') diff --git a/mail/mail-send-recv.h b/mail/mail-send-recv.h index 82ea2c21b5..cd11a4a9bb 100644 --- a/mail/mail-send-recv.h +++ b/mail/mail-send-recv.h @@ -24,27 +24,24 @@ #define MAIL_SEND_RECV_H #include -#include -#include -#include +#include G_BEGIN_DECLS /* send/receive all CamelServices */ GtkWidget * mail_send_receive (GtkWindow *parent, - EMailBackend *backend); + EMailSession *session); GtkWidget * mail_receive (GtkWindow *parent, - EMailBackend *backend); + EMailSession *session); /* receive a single CamelService */ -void mail_receive_service (EMailBackend *backend, - CamelService *service); +void mail_receive_service (CamelService *service); -void mail_send (EMailBackend *backend); +void mail_send (EMailSession *session); /* setup auto receive stuff */ -void mail_autoreceive_init (EMailBackend *backend); +void mail_autoreceive_init (EMailSession *session); G_END_DECLS -- cgit v1.2.3