aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-04-01 06:22:58 +0800
committerChris Lahey <clahey@src.gnome.org>2001-04-01 06:22:58 +0800
commit1bc755bcd9476c90276356c0bdcbc570cca890b1 (patch)
tree4a20a1a1791c7887e4f5e569b3494685edc444bb
parentb62329bb0cb8d477ced7d5fbac04653612e1dfbd (diff)
downloadgsoc2013-evolution-1bc755bcd9476c90276356c0bdcbc570cca890b1.tar
gsoc2013-evolution-1bc755bcd9476c90276356c0bdcbc570cca890b1.tar.gz
gsoc2013-evolution-1bc755bcd9476c90276356c0bdcbc570cca890b1.tar.bz2
gsoc2013-evolution-1bc755bcd9476c90276356c0bdcbc570cca890b1.tar.lz
gsoc2013-evolution-1bc755bcd9476c90276356c0bdcbc570cca890b1.tar.xz
gsoc2013-evolution-1bc755bcd9476c90276356c0bdcbc570cca890b1.tar.zst
gsoc2013-evolution-1bc755bcd9476c90276356c0bdcbc570cca890b1.zip
Roll back another part of the change.
2001-03-31 Christopher James Lahey <clahey@ximian.com> * e-tree.c (et_real_construct): Roll back another part of the change. svn path=/trunk/; revision=9080
-rw-r--r--widgets/table/e-tree.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/widgets/table/e-tree.c b/widgets/table/e-tree.c
index e22726d456..51b2b08cf9 100644
--- a/widgets/table/e-tree.c
+++ b/widgets/table/e-tree.c
@@ -834,10 +834,14 @@ et_real_construct (ETree *e_tree, ETreeModel *etm, ETableExtras *ete,
e_tree->priv->sorter = e_sorter_new();
gtk_object_set (GTK_OBJECT (e_tree->priv->selection),
- "model", e_tree->priv->model,
"sorter", e_tree->priv->sorter,
+#if 0
+ "model", e_tree->priv->model,
"ets", e_tree->priv->sorted,
"etta", e_tree->priv->etta,
+#else
+ "model", e_tree->priv->etta,
+#endif
"selection_mode", specification->selection_mode,
"cursor_mode", specification->cursor_mode,
NULL);