diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-08-28 06:09:41 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-08-28 06:09:41 +0800 |
commit | 3814bb179fb3e0f3f0e862b2390e317bff0c80bb (patch) | |
tree | 558ada00956b787f7b8be0a9ea65a061703ae9c7 /mail/mail-config.h | |
parent | 9945af011ee1e272440e0f61b74b910d0bd92045 (diff) | |
download | gsoc2013-evolution-3814bb179fb3e0f3f0e862b2390e317bff0c80bb.tar.gz gsoc2013-evolution-3814bb179fb3e0f3f0e862b2390e317bff0c80bb.tar.zst gsoc2013-evolution-3814bb179fb3e0f3f0e862b2390e317bff0c80bb.zip |
Pass mail_config_get_thread_subject() as the third argument to
2002-08-27 Jeffrey Stedfast <fejj@ximian.com>
* message-list.c (regen_list_regen): Pass
mail_config_get_thread_subject() as the third argument to
camel_folder_thread_messages_new().
* mail-config.c (config_read): Read in the thread_by_subject
config option.
(mail_config_write_on_exit): Save the thread_by_subject config
option.
(mail_config_get_thread_subject): New function to get the
thread_subject value.
(mail_config_set_thread_subject): New function to set the
thread_subject value.
svn path=/trunk/; revision=17881
Diffstat (limited to 'mail/mail-config.h')
-rw-r--r-- | mail/mail-config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/mail-config.h b/mail/mail-config.h index bcf45e9ca8..95159faafe 100644 --- a/mail/mail-config.h +++ b/mail/mail-config.h @@ -179,6 +179,9 @@ void mail_config_set_empty_trash_on_exit (gboolean value); gboolean mail_config_get_thread_list (const char *uri); void mail_config_set_thread_list (const char *uri, gboolean value); +gboolean mail_config_get_thread_subject (void); +void mail_config_set_thread_subject (gboolean thread_subject); + gboolean mail_config_get_show_preview (const char *uri); void mail_config_set_show_preview (const char *uri, gboolean value); |