diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-04-01 19:33:03 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-04-01 19:33:03 +0800 |
commit | 7e13452f2067e038d4355993c4d2caf9a7c38262 (patch) | |
tree | 6793bfb7553b517228a349cd7ef3c935ce060c2a /widgets/table/e-tree-selection-model.c | |
parent | 1bd972cbe25857ec6edf36d6261afd15c3f3a891 (diff) | |
download | gsoc2013-evolution-7e13452f2067e038d4355993c4d2caf9a7c38262.tar.gz gsoc2013-evolution-7e13452f2067e038d4355993c4d2caf9a7c38262.tar.zst gsoc2013-evolution-7e13452f2067e038d4355993c4d2caf9a7c38262.zip |
Fixed some bugs with the privitization of ETreeSelectionModel.
2001-04-01 Christopher James Lahey <clahey@ximian.com>
* e-tree-selection-model.c: Fixed some bugs with the privitization
of ETreeSelectionModel.
* e-tree.c: One more required change to make it work with
E_TREE_USE_TREE_SELECTION on.
svn path=/trunk/; revision=9084
Diffstat (limited to 'widgets/table/e-tree-selection-model.c')
-rw-r--r-- | widgets/table/e-tree-selection-model.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/widgets/table/e-tree-selection-model.c b/widgets/table/e-tree-selection-model.c index 6198973395..f35a9563f0 100644 --- a/widgets/table/e-tree-selection-model.c +++ b/widgets/table/e-tree-selection-model.c @@ -53,13 +53,6 @@ struct ETreeSelectionModelPriv { gint cursor_col; gint selection_start_row; - guint model_changed_id; - guint model_row_inserted_id, model_row_deleted_id; - - guint frozen : 1; - guint selection_model_changed : 1; - guint group_info_changed : 1; - int tree_model_pre_change_id; int tree_model_node_changed_id; int tree_model_node_data_changed_id; @@ -956,9 +949,15 @@ e_tree_selection_model_init (ETreeSelectionModel *etsm) priv = g_new(ETreeSelectionModelPriv, 1); etsm->priv = priv; + priv->etta = NULL; + priv->ets = NULL; + priv->model = NULL; + priv->root = NULL; + priv->cursor_path = NULL; priv->cursor_col = -1; + priv->selection_start_row = 0; priv->tree_model_pre_change_id = 0; priv->tree_model_node_changed_id = 0; |