aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-01-23 12:41:16 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-01-23 12:41:16 +0800
commit78fb2fa0edcad3facb7e1f5cab12303b1864e47e (patch)
treea22ca78728bcee788ee9cf3d9b1018db1a7cb122 /mail/message-list.c
parent4cf9b5a00cb088a3d40974f48b69120afcaf1b68 (diff)
downloadgsoc2013-evolution-78fb2fa0edcad3facb7e1f5cab12303b1864e47e.tar
gsoc2013-evolution-78fb2fa0edcad3facb7e1f5cab12303b1864e47e.tar.gz
gsoc2013-evolution-78fb2fa0edcad3facb7e1f5cab12303b1864e47e.tar.bz2
gsoc2013-evolution-78fb2fa0edcad3facb7e1f5cab12303b1864e47e.tar.lz
gsoc2013-evolution-78fb2fa0edcad3facb7e1f5cab12303b1864e47e.tar.xz
gsoc2013-evolution-78fb2fa0edcad3facb7e1f5cab12303b1864e47e.tar.zst
gsoc2013-evolution-78fb2fa0edcad3facb7e1f5cab12303b1864e47e.zip
Try turning off the BROKEN_ETREE thing. It seems to work ok (better?) now,
2001-01-23 Not Zed <NotZed@Ximian.com> * message-list.c (build_tree): Try turning off the BROKEN_ETREE thing. It seems to work ok (better?) now, but if its still broken i'll remove it again for the next release. svn path=/trunk/; revision=7740
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index e78d9c8608..1c502ff9a8 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -1483,7 +1483,7 @@ build_tree (MessageList *ml, CamelFolderThread *thread, CamelFolderChangeInfo *c
e_tree_model_node_set_expanded(etm, ml->tree_root, TRUE);
}
-#define BROKEN_ETREE /* avoid some broken code in etree(?) by not using the incremental update */
+/*#define BROKEN_ETREE*/ /* avoid some broken code in etree(?) by not using the incremental update */
top = e_tree_model_node_get_first_child(etm, ml->tree_root);
#ifndef BROKEN_ETREE
@@ -2518,8 +2518,8 @@ mail_regen_list(MessageList *ml, const char *search, const char *hideexpr, Camel
/* see if we need to goto the child thread at all anyway */
/* currently the only case is the flat view with updates and no search */
- if (hideexpr == NULL && search == NULL && changes != NULL && !list->threaded) {
- build_flat_diff(list, changes);
+ if (hideexpr == NULL && search == NULL && changes != NULL && !ml->threaded) {
+ build_flat_diff(ml, changes);
camel_folder_change_info_free(changes);
return;
}