diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-10-25 21:17:23 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-10-27 21:25:01 +0800 |
commit | 2b16aef84141800099f859e72d05e1e6bf8e02dd (patch) | |
tree | b7168d8e9a4157a1f6733b0c667dd6239c5e0055 /mail/mail-send-recv.c | |
parent | 58166e645971a4812fef23702f45cacc8e64e419 (diff) | |
download | gsoc2013-evolution-2b16aef84141800099f859e72d05e1e6bf8e02dd.tar.gz gsoc2013-evolution-2b16aef84141800099f859e72d05e1e6bf8e02dd.tar.zst gsoc2013-evolution-2b16aef84141800099f859e72d05e1e6bf8e02dd.zip |
Cleanup and rename filter classes.
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r-- | mail/mail-send-recv.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index b0cff31a9d..6244685842 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -741,7 +741,7 @@ receive_done (const gchar *uri, gpointer data) info->again = 0; mail_send_queue (local_outbox, info->uri, - FILTER_SOURCE_OUTGOING, + E_FILTER_SOURCE_OUTGOING, info->cancel, receive_get_folder, info, receive_status, info, @@ -1002,7 +1002,7 @@ mail_send_receive (GtkWindow *parent) switch (info->type) { case SEND_RECEIVE: mail_fetch_mail(info->uri, info->keep_on_server, - FILTER_SOURCE_INCOMING, + E_FILTER_SOURCE_INCOMING, info->cancel, receive_get_folder, info, receive_status, info, @@ -1011,7 +1011,7 @@ mail_send_receive (GtkWindow *parent) case SEND_SEND: /* todo, store the folder in info? */ mail_send_queue(local_outbox, info->uri, - FILTER_SOURCE_OUTGOING, + E_FILTER_SOURCE_OUTGOING, info->cancel, receive_get_folder, info, receive_status, info, @@ -1217,7 +1217,7 @@ mail_receive_uri (const gchar *uri, gboolean keep_on_server) switch (info->type) { case SEND_RECEIVE: mail_fetch_mail (info->uri, info->keep_on_server, - FILTER_SOURCE_INCOMING, + E_FILTER_SOURCE_INCOMING, info->cancel, receive_get_folder, info, receive_status, info, @@ -1227,7 +1227,7 @@ mail_receive_uri (const gchar *uri, gboolean keep_on_server) /* todo, store the folder in info? */ local_outbox = e_mail_local_get_folder (E_MAIL_FOLDER_OUTBOX); mail_send_queue (local_outbox, info->uri, - FILTER_SOURCE_OUTGOING, + E_FILTER_SOURCE_OUTGOING, info->cancel, receive_get_folder, info, receive_status, info, @@ -1289,7 +1289,7 @@ mail_send (void) /* todo, store the folder in info? */ local_outbox = e_mail_local_get_folder (E_MAIL_FOLDER_OUTBOX); mail_send_queue (local_outbox, info->uri, - FILTER_SOURCE_OUTGOING, + E_FILTER_SOURCE_OUTGOING, info->cancel, receive_get_folder, info, receive_status, info, |