diff options
author | Dan Winship <danw@src.gnome.org> | 2001-01-23 01:47:28 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-01-23 01:47:28 +0800 |
commit | e40e98e0f891bcfdb4e2bb04a13a53b986a0aee3 (patch) | |
tree | 31c83440fff689a3374dbcd731227ab0b4aaa2dd /mail/mail-ops.c | |
parent | b0e1f93ebbc14d532aed0e2b8540e34ba6e93969 (diff) | |
download | gsoc2013-evolution-e40e98e0f891bcfdb4e2bb04a13a53b986a0aee3.tar gsoc2013-evolution-e40e98e0f891bcfdb4e2bb04a13a53b986a0aee3.tar.gz gsoc2013-evolution-e40e98e0f891bcfdb4e2bb04a13a53b986a0aee3.tar.bz2 gsoc2013-evolution-e40e98e0f891bcfdb4e2bb04a13a53b986a0aee3.tar.lz gsoc2013-evolution-e40e98e0f891bcfdb4e2bb04a13a53b986a0aee3.tar.xz gsoc2013-evolution-e40e98e0f891bcfdb4e2bb04a13a53b986a0aee3.tar.zst gsoc2013-evolution-e40e98e0f891bcfdb4e2bb04a13a53b986a0aee3.zip |
s/filter-driver.h/camel-filter-driver.h/ and update first arg of
* mail-tools.h: s/filter-driver.h/camel-filter-driver.h/ and
update first arg of mail_too_filter_get_folder_func
* mail-tools.c (mail_tool_filter_get_folder_func): Update first
arg to CamelFilterDriver *
* mail-send-recv.c (receive_status):
* mail-ops.c (send_queue_send): s/FILTER/CAMEL_FILTER/
* mail-callbacks.c: Remove filter-driver.h include
* mail-accounts.c: Put the news functions inside #ifdef
ENABLE_NNTP to prevent warnings about unused statis functions.
* subscribe-dialog.c (subscribe_folders, unsubscribe_folders,
subscribe_refresh_list): Update prototype to match BONOBO_UI_VERB.
(populate_store_list): add a de-constifying cast
svn path=/trunk/; revision=7708
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 363c9a282a..0756a290c6 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -621,7 +621,7 @@ send_queue_send(struct _mail_msg *mm) char *destination; int pc = (100 * i)/uids->len; - report_status(m, FILTER_STATUS_START, pc, "Sending message %d of %d", i+1, uids->len); + report_status(m, CAMEL_FILTER_STATUS_START, pc, "Sending message %d of %d", i+1, uids->len); message = camel_folder_get_message(m->queue, uids->pdata[i], &mm->ex); if (camel_exception_is_set(&mm->ex)) @@ -644,9 +644,9 @@ send_queue_send(struct _mail_msg *mm) } if (camel_exception_is_set(&mm->ex)) - report_status(m, FILTER_STATUS_END, 100, "Failed on message %d of %d", i+1, uids->len); + report_status(m, CAMEL_FILTER_STATUS_END, 100, "Failed on message %d of %d", i+1, uids->len); else - report_status(m, FILTER_STATUS_END, 100, "Complete."); + report_status(m, CAMEL_FILTER_STATUS_END, 100, "Complete."); camel_folder_free_uids(m->queue, uids); |