aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-04-08 17:24:09 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-04-08 17:24:09 +0800
commitad769a4440cb343e1afd5abbd59a4d4c4d07d9d4 (patch)
treebb6d2afd362530b93f33826b53200b43d69cd437 /camel/camel-folder.h
parent00f84d0c5a594736ddc17ec8115b3a858e085c0a (diff)
downloadgsoc2013-evolution-ad769a4440cb343e1afd5abbd59a4d4c4d07d9d4.tar
gsoc2013-evolution-ad769a4440cb343e1afd5abbd59a4d4c4d07d9d4.tar.gz
gsoc2013-evolution-ad769a4440cb343e1afd5abbd59a4d4c4d07d9d4.tar.bz2
gsoc2013-evolution-ad769a4440cb343e1afd5abbd59a4d4c4d07d9d4.tar.lz
gsoc2013-evolution-ad769a4440cb343e1afd5abbd59a4d4c4d07d9d4.tar.xz
gsoc2013-evolution-ad769a4440cb343e1afd5abbd59a4d4c4d07d9d4.tar.zst
gsoc2013-evolution-ad769a4440cb343e1afd5abbd59a4d4c4d07d9d4.zip
always set the seen flag when we delete a message. I demand that this may,
2004-04-08 Not Zed <NotZed@Ximian.com> * camel-folder.h (camel_folder_delete_message): always set the seen flag when we delete a message. I demand that this may, or may not, fix #56549. * camel-folder.c: (camel_folder_set_message_flags): fixed the doco slightly (well reversed the flag and set explanation) and give an example. svn path=/trunk/; revision=25371
Diffstat (limited to 'camel/camel-folder.h')
-rw-r--r--camel/camel-folder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-folder.h b/camel/camel-folder.h
index da81fd5216..b34b9ab45b 100644
--- a/camel/camel-folder.h
+++ b/camel/camel-folder.h
@@ -280,7 +280,7 @@ CamelMimeMessage * camel_folder_get_message (CamelFolder *folder,
const char *uid,
CamelException *ex);
#define camel_folder_delete_message(folder, uid) \
- camel_folder_set_message_flags (folder, uid, CAMEL_MESSAGE_DELETED, CAMEL_MESSAGE_DELETED)
+ camel_folder_set_message_flags (folder, uid, CAMEL_MESSAGE_DELETED|CAMEL_MESSAGE_SEEN, CAMEL_MESSAGE_DELETED)
GPtrArray * camel_folder_get_uids (CamelFolder *folder);
void camel_folder_free_uids (CamelFolder *folder,