diff options
author | Chris Toshok <toshok@helixcode.com> | 2000-10-07 03:51:39 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-10-07 03:51:39 +0800 |
commit | c57689ab416d4ad570ef199e34c1a72bf46bccaa (patch) | |
tree | 5902701801b23ae792313d90522103a7de410b8e | |
parent | b2e8db035a77fc87d20b046ffe017e95a5d024af (diff) | |
download | gsoc2013-evolution-c57689ab416d4ad570ef199e34c1a72bf46bccaa.tar gsoc2013-evolution-c57689ab416d4ad570ef199e34c1a72bf46bccaa.tar.gz gsoc2013-evolution-c57689ab416d4ad570ef199e34c1a72bf46bccaa.tar.bz2 gsoc2013-evolution-c57689ab416d4ad570ef199e34c1a72bf46bccaa.tar.lz gsoc2013-evolution-c57689ab416d4ad570ef199e34c1a72bf46bccaa.tar.xz gsoc2013-evolution-c57689ab416d4ad570ef199e34c1a72bf46bccaa.tar.zst gsoc2013-evolution-c57689ab416d4ad570ef199e34c1a72bf46bccaa.zip |
call _set_compare_function after inserting the storage.
2000-10-06 Chris Toshok <toshok@helixcode.com>
* e-storage-set-view.c (insert_storages): call
_set_compare_function after inserting the storage.
svn path=/trunk/; revision=5771
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-storage-set-view.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index dee815ce2f..7b1d425981 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-10-06 Chris Toshok <toshok@helixcode.com> + + * e-storage-set-view.c (insert_storages): call + _set_compare_function after inserting the storage. + 2000-10-06 Michael Meeks <michael@helixcode.com> * e-shell-view.c (e_shell_view_display_uri): add a freeze / thaw diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c index 9c1ded128e..29b8730683 100644 --- a/shell/e-storage-set-view.c +++ b/shell/e-storage-set-view.c @@ -838,6 +838,7 @@ insert_storages (EStorageSetView *storage_set_view) parent = e_tree_model_node_insert_id (priv->etree_model, priv->root_node, -1, path, path); e_tree_model_node_set_expanded (priv->etree_model, parent, TRUE); + e_tree_model_node_set_compare_function (priv->etree_model, parent, treepath_compare); g_hash_table_insert (priv->path_to_etree_node, path, parent); |