diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-04-16 09:01:47 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-04-16 09:01:47 +0800 |
commit | c0d763a702f850c0653e98e951b3de4a8d3c2c06 (patch) | |
tree | 62be2edad50c0b669b8a47bd58befd94e053dd4f /mail/ChangeLog | |
parent | 2f8b268fd1af1d1b1eb80088c40ccd11a0a4adaf (diff) | |
download | gsoc2013-evolution-c0d763a702f850c0653e98e951b3de4a8d3c2c06.tar gsoc2013-evolution-c0d763a702f850c0653e98e951b3de4a8d3c2c06.tar.gz gsoc2013-evolution-c0d763a702f850c0653e98e951b3de4a8d3c2c06.tar.bz2 gsoc2013-evolution-c0d763a702f850c0653e98e951b3de4a8d3c2c06.tar.lz gsoc2013-evolution-c0d763a702f850c0653e98e951b3de4a8d3c2c06.tar.xz gsoc2013-evolution-c0d763a702f850c0653e98e951b3de4a8d3c2c06.tar.zst gsoc2013-evolution-c0d763a702f850c0653e98e951b3de4a8d3c2c06.zip |
Mark the messages as seen, not unseen. (is_drafts_folder): New function to
2001-04-15 Jeffrey Stedfast <fejj@ximian.com>
* mail-callbacks.c (mark_all_as_seen): Mark the messages as seen,
not unseen.
(is_drafts_folder): New function to attempt to determine if a
folder is a drafts folder.
(open_msg): Use is_drafts_folder().
(edit_msg): And here.
(edit_msg_internal): New function that doesn't do the drafts
checking and is only to be used internally. This should save us
from having to doubly-check a folder to see if it's a drafts
folder when doing an Open on the message.
(open_msg): Call edit_msg_internal once we've established that the
folder is a drafts folder.
svn path=/trunk/; revision=9336
Diffstat (limited to 'mail/ChangeLog')
-rw-r--r-- | mail/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 884133b5a8..82be2a1a83 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -2,6 +2,16 @@ * mail-callbacks.c (mark_all_as_seen): Mark the messages as seen, not unseen. + (is_drafts_folder): New function to attempt to determine if a + folder is a drafts folder. + (open_msg): Use is_drafts_folder(). + (edit_msg): And here. + (edit_msg_internal): New function that doesn't do the drafts + checking and is only to be used internally. This should save us + from having to doubly-check a folder to see if it's a drafts + folder when doing an Open on the message. + (open_msg): Call edit_msg_internal once we've established that the + folder is a drafts folder. 2001-04-14 Jeffrey Stedfast <fejj@ximian.com> |