diff options
author | Not Zed <NotZed@Ximian.com> | 2001-01-22 14:24:30 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-01-22 14:24:30 +0800 |
commit | 0175b0b3eaf4a327e0627b14d7b93e6875e765d8 (patch) | |
tree | 25f267b74e06acbbfee6a5b02ab68692d891cd86 /camel/camel-filter-driver.h | |
parent | 6adb44b607e483357a6784ce75c26f411be143b0 (diff) | |
download | gsoc2013-evolution-0175b0b3eaf4a327e0627b14d7b93e6875e765d8.tar.gz gsoc2013-evolution-0175b0b3eaf4a327e0627b14d7b93e6875e765d8.tar.zst gsoc2013-evolution-0175b0b3eaf4a327e0627b14d7b93e6875e765d8.zip |
When removing phantom nodes, check for the end node too.
2001-01-22 Not Zed <NotZed@Ximian.com>
* camel-folder-thread.c (camel_folder_thread_messages_new): When
removing phantom nodes, check for the end node too.
* camel-filter-driver.[ch]: Changed status vars to be
CAMEL_FILTER_STATUS_ etc.
svn path=/trunk/; revision=7700
Diffstat (limited to 'camel/camel-filter-driver.h')
-rw-r--r-- | camel/camel-filter-driver.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/camel/camel-filter-driver.h b/camel/camel-filter-driver.h index a3ff6ab323..74803acfcd 100644 --- a/camel/camel-filter-driver.h +++ b/camel/camel-filter-driver.h @@ -48,11 +48,11 @@ struct _CamelFilterDriverClass { /* FIXME: this maybe should change... */ /* type of status for a status report */ enum camel_filter_status_t { - FILTER_STATUS_NONE, - FILTER_STATUS_START, /* start of new message processed */ - FILTER_STATUS_ACTION, /* an action performed */ - FILTER_STATUS_PROGRESS, /* (an) extra update(s), if its taking longer to process */ - FILTER_STATUS_END, /* end of message */ + CAMEL_FILTER_STATUS_NONE, + CAMEL_FILTER_STATUS_START, /* start of new message processed */ + CAMEL_FILTER_STATUS_ACTION, /* an action performed */ + CAMEL_FILTER_STATUS_PROGRESS, /* (an) extra update(s), if its taking longer to process */ + CAMEL_FILTER_STATUS_END, /* end of message */ }; typedef CamelFolder * (*CamelFilterGetFolderFunc) (CamelFilterDriver *, const char *uri, void *data, CamelException *ex); |