aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-08-28 06:09:41 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-08-28 06:09:41 +0800
commit3814bb179fb3e0f3f0e862b2390e317bff0c80bb (patch)
tree558ada00956b787f7b8be0a9ea65a061703ae9c7 /mail/message-list.c
parent9945af011ee1e272440e0f61b74b910d0bd92045 (diff)
downloadgsoc2013-evolution-3814bb179fb3e0f3f0e862b2390e317bff0c80bb.tar
gsoc2013-evolution-3814bb179fb3e0f3f0e862b2390e317bff0c80bb.tar.gz
gsoc2013-evolution-3814bb179fb3e0f3f0e862b2390e317bff0c80bb.tar.bz2
gsoc2013-evolution-3814bb179fb3e0f3f0e862b2390e317bff0c80bb.tar.lz
gsoc2013-evolution-3814bb179fb3e0f3f0e862b2390e317bff0c80bb.tar.xz
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/message-list.c')
-rw-r--r--mail/message-list.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 14624f57f2..a719983588 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -2673,7 +2673,8 @@ regen_list_regen (struct _mail_msg *mm)
if (m->tree)
camel_folder_thread_messages_apply(m->tree, showuids);
else
- m->tree = camel_folder_thread_messages_new(m->folder, showuids);
+ m->tree = camel_folder_thread_messages_new (m->folder, showuids,
+ mail_config_get_thread_subject ());
} else {
m->summary = g_ptr_array_new ();
for (i = 0; i < showuids->len; i++) {