diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-02-07 08:42:30 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-02-07 08:42:30 +0800 |
commit | eda028e5a594c85befd8ba29ce42dc1c66cee33e (patch) | |
tree | 0a26d673c44bea754c80f16d13d0dd79a95cc519 /camel | |
parent | a184d302d53b70a18f252be8d8b190ea96a896fa (diff) | |
download | gsoc2013-evolution-eda028e5a594c85befd8ba29ce42dc1c66cee33e.tar.gz gsoc2013-evolution-eda028e5a594c85befd8ba29ce42dc1c66cee33e.tar.zst gsoc2013-evolution-eda028e5a594c85befd8ba29ce42dc1c66cee33e.zip |
Remove the CAMEL_MESSAGE_NEEDS_REPLY flag, we no longer will be using
2002-02-06 Jeffrey Stedfast <fejj@ximian.com>
* camel-folder-summary.h: Remove the CAMEL_MESSAGE_NEEDS_REPLY
flag, we no longer will be using this.
svn path=/trunk/; revision=15586
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/camel-folder-summary.c | 1 | ||||
-rw-r--r-- | camel/camel-folder-summary.h | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 861e6b8ad5..a1e4aae40f 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2002-02-06 Jeffrey Stedfast <fejj@ximian.com> + + * camel-folder-summary.h: Remove the CAMEL_MESSAGE_NEEDS_REPLY + flag, we no longer will be using this. + 2002-02-04 Jeffrey Stedfast <fejj@ximian.com> * camel-http-stream.c (stream_read): Use camel_mime_parser_read to diff --git a/camel/camel-folder-summary.c b/camel/camel-folder-summary.c index 9c79ad80f3..cabbca5637 100644 --- a/camel/camel-folder-summary.c +++ b/camel/camel-folder-summary.c @@ -2360,7 +2360,6 @@ struct flag_names_t { { "flagged", CAMEL_MESSAGE_FLAGGED }, { "seen", CAMEL_MESSAGE_SEEN }, { "attachments", CAMEL_MESSAGE_ATTACHMENTS }, - { "needsreply", CAMEL_MESSAGE_NEEDS_REPLY }, { NULL, 0 } }; diff --git a/camel/camel-folder-summary.h b/camel/camel-folder-summary.h index ee5b69bf37..f63a1d49a0 100644 --- a/camel/camel-folder-summary.h +++ b/camel/camel-folder-summary.h @@ -57,7 +57,6 @@ enum _CamelMessageFlags { CAMEL_MESSAGE_FLAGGED = 1<<3, CAMEL_MESSAGE_SEEN = 1<<4, CAMEL_MESSAGE_ATTACHMENTS = 1<<5, - CAMEL_MESSAGE_NEEDS_REPLY = 1<<6, /* following flags are for the folder, and are not really permanent flags */ CAMEL_MESSAGE_FOLDER_FLAGGED = 1<<16, /* for use by the folder implementation */ |