diff options
Diffstat (limited to 'widgets/table/e-table-selection-model.h')
-rw-r--r-- | widgets/table/e-table-selection-model.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/widgets/table/e-table-selection-model.h b/widgets/table/e-table-selection-model.h index 42333b2493..02b1949257 100644 --- a/widgets/table/e-table-selection-model.h +++ b/widgets/table/e-table-selection-model.h @@ -23,12 +23,19 @@ typedef struct { ETableModel *model; + guint model_pre_change_id; guint model_changed_id; - guint model_row_inserted_id, model_row_deleted_id; + guint model_row_changed_id; + guint model_cell_changed_id; + guint model_rows_inserted_id; + guint model_rows_deleted_id; guint frozen : 1; guint selection_model_changed : 1; guint group_info_changed : 1; + + GHashTable *hash; + gchar *cursor_id; } ETableSelectionModel; typedef struct { |