diff options
author | Not Zed <NotZed@Ximian.com> | 2004-02-06 14:31:02 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-02-06 14:31:02 +0800 |
commit | 734a27187b7c4495f377c8533f9affdcf860dbbc (patch) | |
tree | d4e7496e6844564a592706e0fd3f74e5d4d0e4c6 /camel/providers/nntp | |
parent | 9fe2942fe8ed2a561c9a3098f8a3655ae2691fcd (diff) | |
download | gsoc2013-evolution-734a27187b7c4495f377c8533f9affdcf860dbbc.tar.gz gsoc2013-evolution-734a27187b7c4495f377c8533f9affdcf860dbbc.tar.zst gsoc2013-evolution-734a27187b7c4495f377c8533f9affdcf860dbbc.zip |
changed to return a boolean to indicate if the flags were actually changed
2004-02-06 Not Zed <NotZed@Ximian.com>
* camel-folder.c (camel_folder_set_message_flags): changed to
return a boolean to indicate if the flags were actually changed or
not. Fixed all implementors.
svn path=/trunk/; revision=24643
Diffstat (limited to 'camel/providers/nntp')
-rw-r--r-- | camel/providers/nntp/camel-nntp-folder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/nntp/camel-nntp-folder.c b/camel/providers/nntp/camel-nntp-folder.c index c0d7093a1c..6a6851232f 100644 --- a/camel/providers/nntp/camel-nntp-folder.c +++ b/camel/providers/nntp/camel-nntp-folder.c @@ -99,10 +99,10 @@ nntp_folder_sync_offline (CamelFolder *folder, CamelException *ex) camel_folder_summary_save (folder->summary); } -static void +static gboolean nntp_folder_set_message_flags (CamelFolder *folder, const char *uid, guint32 flags, guint32 set) { - ((CamelFolderClass *) folder_class)->set_message_flags (folder, uid, flags, set); + return ((CamelFolderClass *) folder_class)->set_message_flags (folder, uid, flags, set); } static CamelStream * |