diff options
author | Miguel de Icaza <miguel@gnu.org> | 1999-12-03 16:02:36 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-12-03 16:02:36 +0800 |
commit | 50006218b6fce73920132f43569f410e6d6c6ae4 (patch) | |
tree | 7fd9b0947b1393b157d6e7217d4819b78806a638 /widgets/e-table/test-table.c | |
parent | 2e132a09abe8303d10d25b80d1fe23e3b18c6a62 (diff) | |
download | gsoc2013-evolution-50006218b6fce73920132f43569f410e6d6c6ae4.tar gsoc2013-evolution-50006218b6fce73920132f43569f410e6d6c6ae4.tar.gz gsoc2013-evolution-50006218b6fce73920132f43569f410e6d6c6ae4.tar.bz2 gsoc2013-evolution-50006218b6fce73920132f43569f410e6d6c6ae4.tar.lz gsoc2013-evolution-50006218b6fce73920132f43569f410e6d6c6ae4.tar.xz gsoc2013-evolution-50006218b6fce73920132f43569f410e6d6c6ae4.tar.zst gsoc2013-evolution-50006218b6fce73920132f43569f410e6d6c6ae4.zip |
fixed api.
1999-12-02 Miguel de Icaza <miguel@gnu.org>
* e-table-header.c (e_table_header_index): fixed api.
1999-12-01 Miguel de Icaza <miguel@gnu.org>
* test-cols.c (multi_cols_test): Update to simplified API.
* test-check.c (check_test): ditto
* test-table.c (table_browser_test): ditto
* e-table-simple.c (e_table_simple_class_init): Kill column_name method.
* e-table-model.h: Kill column_name method.
* e-table-col.c (e_table_col_new): Instead of using a column name,
use a column index.
svn path=/trunk/; revision=1459
Diffstat (limited to 'widgets/e-table/test-table.c')
-rw-r--r-- | widgets/e-table/test-table.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/widgets/e-table/test-table.c b/widgets/e-table/test-table.c index be1a1059db..04c40959af 100644 --- a/widgets/e-table/test-table.c +++ b/widgets/e-table/test-table.c @@ -127,14 +127,6 @@ col_count (ETableModel *etc, void *data) return cols; } -static const char * -col_name (ETableModel *etc, int col, void *data) -{ - g_assert (col < cols); - - return column_labels [col]; -} - static int row_count (ETableModel *etc, void *data) { @@ -189,7 +181,7 @@ table_browser_test (void) * Data model */ e_table_model = e_table_simple_new ( - col_count, col_name, row_count, value_at, + col_count, row_count, value_at, set_value_at, is_cell_editable, NULL); /* @@ -200,7 +192,7 @@ table_browser_test (void) for (i = 0; i < cols; i++){ ETableCol *ecol = e_table_col_new ( - column_labels [i], column_labels [i], + i, column_labels [i], 80, 20, cell_left_just, g_str_equal, TRUE); |