diff options
author | Darin Adler <darin@src.gnome.org> | 2000-05-18 07:40:47 +0800 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2000-05-18 07:40:47 +0800 |
commit | 879ec8920b51709cf762cbb6785f8f321da55b2d (patch) | |
tree | 5362eba253a25d2a2fa9705f75354249706b4bc6 /camel/camel-folder-summary.c | |
parent | d034f9071de584910f23feefa918b6d9bc572f99 (diff) | |
download | gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar.gz gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar.bz2 gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar.lz gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar.xz gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar.zst gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.zip |
Quick fix to get it to compile. I hope I don't get into trouble.
* camel-folder-summary.c: (message_info_load):
Quick fix to get it to compile. I hope I don't get into trouble.
svn path=/trunk/; revision=3110
Diffstat (limited to 'camel/camel-folder-summary.c')
-rw-r--r-- | camel/camel-folder-summary.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-folder-summary.c b/camel/camel-folder-summary.c index 01403a5cad..11f4841480 100644 --- a/camel/camel-folder-summary.c +++ b/camel/camel-folder-summary.c @@ -33,6 +33,7 @@ #include <camel/camel-mime-filter-charset.h> #include <camel/camel-mime-filter-save.h> #include <camel/camel-mime-filter-basic.h> +#include <camel/camel-mime-message.h> #include "hash-table-utils.h" /* this should probably be conditional on it existing */ @@ -996,7 +997,7 @@ message_info_load(CamelFolderSummary *s, FILE *in) for (i=0;i<count;i++) { char *name; camel_folder_summary_decode_string(in, &name); - camel_flag_set(&mi->user_flags, name); + camel_flag_set(&mi->user_flags, name, TRUE); g_free(name); } |