diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2001-01-29 17:53:23 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-01-29 17:53:23 +0800 |
commit | 66b038a31f0c7be2a3b0fa2f36de636b17481500 (patch) | |
tree | c969e2c495b6b1b737a93776b697555116a2a272 /mail | |
parent | be3bada02164ec3b0f97db637372b542ef716c50 (diff) | |
download | gsoc2013-evolution-66b038a31f0c7be2a3b0fa2f36de636b17481500.tar gsoc2013-evolution-66b038a31f0c7be2a3b0fa2f36de636b17481500.tar.gz gsoc2013-evolution-66b038a31f0c7be2a3b0fa2f36de636b17481500.tar.bz2 gsoc2013-evolution-66b038a31f0c7be2a3b0fa2f36de636b17481500.tar.lz gsoc2013-evolution-66b038a31f0c7be2a3b0fa2f36de636b17481500.tar.xz gsoc2013-evolution-66b038a31f0c7be2a3b0fa2f36de636b17481500.tar.zst gsoc2013-evolution-66b038a31f0c7be2a3b0fa2f36de636b17481500.zip |
(build_tree): Oops, turn on BROKEN_ETREE again.
svn path=/trunk/; revision=7888
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 1 | ||||
-rw-r--r-- | mail/message-list.c | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 3bef3dcf12..caa94b8278 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -3,6 +3,7 @@ * message-list.c (tree_equal): Debug function to compare the tree we think we have, after an incremental update. (build_tree): Check the tree after we've built it. + (build_tree): Oops, turn on BROKEN_ETREE again. * mail-mt.c (mail_get_password): If we are being called from the main gui thread, then just call the dialogue directly. Ideally we diff --git a/mail/message-list.c b/mail/message-list.c index 69ca413314..6b43964477 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -1460,8 +1460,6 @@ static void build_subtree (MessageList *ml, ETreePath *parent, CamelFolderThread static void build_subtree_diff (MessageList *ml, ETreePath *parent, ETreePath *path, CamelFolderThreadNode *c, int *row, GHashTable *expanded_nodes); -static int tree_equal(ETreeModel *etm, ETreePath *ap, CamelFolderThreadNode *bp); - static void build_tree (MessageList *ml, CamelFolderThread *thread, CamelFolderChangeInfo *changes) { @@ -1491,7 +1489,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 @@ -1503,6 +1501,8 @@ build_tree (MessageList *ml, CamelFolderThread *thread, CamelFolderChangeInfo *c e_tree_model_thaw(etm); #ifndef BROKEN_ETREE } else { + static int tree_equal(ETreeModel *etm, ETreePath *ap, CamelFolderThreadNode *bp); + build_subtree_diff(ml, ml->tree_root, top, thread->tree, &row, expanded_nodes); top = e_tree_model_node_get_first_child(etm, ml->tree_root); tree_equal(ml->table_model, top, thread->tree); @@ -1605,6 +1605,7 @@ node_equal(ETreeModel *etm, ETreePath *ap, CamelFolderThreadNode *bp) return 0; } +#ifndef BROKEN_ETREE /* debug function - compare the two trees to see if they are the same */ static int tree_equal(ETreeModel *etm, ETreePath *ap, CamelFolderThreadNode *bp) @@ -1655,6 +1656,7 @@ tree_equal(ETreeModel *etm, ETreePath *ap, CamelFolderThreadNode *bp) } return TRUE; } +#endif /* adds a single node, retains save state, and handles adding children if required */ static void |