diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-01 12:01:05 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-01 12:01:05 +0800 |
commit | eb5dc08dc91a593357a6c1b1db98fac8cdb1662e (patch) | |
tree | 95a4c1a740939467e6f179c73a13594c684e9cfc /widgets/e-table/e-table.h | |
parent | 64fbed6351453bc9e61c15cfe7267d6df4574ac0 (diff) | |
download | gsoc2013-evolution-eb5dc08dc91a593357a6c1b1db98fac8cdb1662e.tar gsoc2013-evolution-eb5dc08dc91a593357a6c1b1db98fac8cdb1662e.tar.gz gsoc2013-evolution-eb5dc08dc91a593357a6c1b1db98fac8cdb1662e.tar.bz2 gsoc2013-evolution-eb5dc08dc91a593357a6c1b1db98fac8cdb1662e.tar.lz gsoc2013-evolution-eb5dc08dc91a593357a6c1b1db98fac8cdb1662e.tar.xz gsoc2013-evolution-eb5dc08dc91a593357a6c1b1db98fac8cdb1662e.tar.zst gsoc2013-evolution-eb5dc08dc91a593357a6c1b1db98fac8cdb1662e.zip |
Made this more reentrant.
2000-04-30 Christopher James Lahey <clahey@helixcode.com>
* e-table-header-item.c: Made this more reentrant.
* e-table-sorted-variable.c, e-table-sorted-variable.h: Does a
proper resort when the sorting info changes.
* e-table.c, e-table.h: Made it so that ETable doesn't destroy and
recreate the entire table when sorting info changes.
svn path=/trunk/; revision=2704
Diffstat (limited to 'widgets/e-table/e-table.h')
-rw-r--r-- | widgets/e-table/e-table.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/widgets/e-table/e-table.h b/widgets/e-table/e-table.h index 61fc5a41ae..35b9cd0002 100644 --- a/widgets/e-table/e-table.h +++ b/widgets/e-table/e-table.h @@ -33,7 +33,6 @@ typedef struct { int table_row_change_id; int table_cell_change_id; - int sort_info_change_id; int group_info_change_id; GnomeCanvas *header_canvas, *table_canvas; @@ -78,6 +77,9 @@ GtkWidget *e_table_new_from_spec_file (ETableHeader *full_header, gchar *e_table_get_specification (ETable *e_table); void e_table_save_specification (ETable *e_table, gchar *filename); +void e_table_select_row (ETable *e_table, + int row); + END_GNOME_DECLS #endif /* _E_TABLE_H_ */ |