diff options
author | Iain Holmes <iain@src.gnome.org> | 2002-06-27 00:07:40 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2002-06-27 00:07:40 +0800 |
commit | 6bb5b8850a6202012fe8f7b1ea0295aeab4112ba (patch) | |
tree | 287fe93359b371d5775d3e3120cc4087e3ac7d12 /my-evolution/e-summary-shown.c | |
parent | 9a210db24ffc2e0d806c5afda8cf3b471aa4d5c3 (diff) | |
download | gsoc2013-evolution-6bb5b8850a6202012fe8f7b1ea0295aeab4112ba.tar.gz gsoc2013-evolution-6bb5b8850a6202012fe8f7b1ea0295aeab4112ba.tar.zst gsoc2013-evolution-6bb5b8850a6202012fe8f7b1ea0295aeab4112ba.zip |
Sort the states in the right order
svn path=/trunk/; revision=17291
Diffstat (limited to 'my-evolution/e-summary-shown.c')
-rw-r--r-- | my-evolution/e-summary-shown.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/my-evolution/e-summary-shown.c b/my-evolution/e-summary-shown.c index 92c2d3102e..f66b5c7512 100644 --- a/my-evolution/e-summary-shown.c +++ b/my-evolution/e-summary-shown.c @@ -581,14 +581,11 @@ e_tree_model_node_append (ETreeModel *etm, gpointer data) { ETreeMemory *etmm; - int position; ETreePath path; - position = e_tree_model_node_get_children (etm, parent, NULL); - etmm = E_TREE_MEMORY (etm); e_tree_memory_freeze (etmm); - path = e_tree_memory_node_insert (etmm, parent, position, data); + path = e_tree_memory_node_insert (etmm, parent, -1, data); e_tree_memory_thaw (etmm); return path; |