diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-10-13 05:52:49 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-10-13 05:52:49 +0800 |
commit | a5931319b6e19fdcbe18e077a2305cf41ccaea9e (patch) | |
tree | 7aa5a91b02815bf30928e52c2144cda58b26c06b /widgets/table/e-table.c | |
parent | 0ad57aa1b9f67bf68920cf6a8bbaad773f105108 (diff) | |
download | gsoc2013-evolution-a5931319b6e19fdcbe18e077a2305cf41ccaea9e.tar.gz gsoc2013-evolution-a5931319b6e19fdcbe18e077a2305cf41ccaea9e.tar.zst gsoc2013-evolution-a5931319b6e19fdcbe18e077a2305cf41ccaea9e.zip |
Use new e_table_header_prioritized_column field.
2001-10-12 Christopher James Lahey <clahey@ximian.com>
* e-table-click-to-add.c (set_initial_selection): Use new
e_table_header_prioritized_column field.
* e-table-header.c, e-table-header.h
(e_table_header_prioritized_column): New function. Refactors the
code from ETableClickToAdd to find the column with the highest
priority.
* e-table-selection-model.c, e-table-selection-model.h
(model_changed_idle): Changed this function to use the
e_table_header_prioritized_column function. Added an argument to
set the "header" on this selection model.
* e-table-utils.h: Indentation cleanup.
* e-table.c (et_real_construct): Set the "header" argument on the
selection model here.
* e-table.h: #include <gal/e-table/e-table-sorter.h>
svn path=/trunk/; revision=13633
Diffstat (limited to 'widgets/table/e-table.c')
-rw-r--r-- | widgets/table/e-table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index 7271348926..7cc6a215ef 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -1042,6 +1042,7 @@ et_real_construct (ETable *e_table, ETableModel *etm, ETableExtras *ete, gtk_object_set (GTK_OBJECT (e_table->selection), "model", etm, "sorter", e_table->sorter, + "header", e_table->header, NULL); gtk_signal_connect(GTK_OBJECT(e_table->selection), "selection_changed", |