aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/e-table/e-table-simple.h
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnu.org>1999-12-03 16:02:36 +0800
committerArturo Espinosa <unammx@src.gnome.org>1999-12-03 16:02:36 +0800
commit50006218b6fce73920132f43569f410e6d6c6ae4 (patch)
tree7fd9b0947b1393b157d6e7217d4819b78806a638 /widgets/e-table/e-table-simple.h
parent2e132a09abe8303d10d25b80d1fe23e3b18c6a62 (diff)
downloadgsoc2013-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/e-table-simple.h')
-rw-r--r--widgets/e-table/e-table-simple.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/widgets/e-table/e-table-simple.h b/widgets/e-table/e-table-simple.h
index 1f7a17aeff..d890245386 100644
--- a/widgets/e-table/e-table-simple.h
+++ b/widgets/e-table/e-table-simple.h
@@ -4,7 +4,6 @@
#include "e-table-model.h"
typedef int (*ETableSimpleColumnCountFn) (ETableModel *etm, void *data);
-typedef const char *(*ETableSimpleColumnNameFn) (ETableModel *etm, int col, void *data);
typedef int (*ETableSimpleRowCountFn) (ETableModel *etm, void *data);
typedef void *(*ETableSimpleValueAtFn) (ETableModel *etm, int col, int row, void *data);
typedef void (*ETableSimpleSetValueAtFn) (ETableModel *etm, int col, int row, const void *val, void *data);
@@ -14,7 +13,6 @@ typedef struct {
ETableModel parent;
ETableSimpleColumnCountFn col_count;
- ETableSimpleColumnNameFn col_name;
ETableSimpleRowCountFn row_count;
ETableSimpleValueAtFn value_at;
ETableSimpleSetValueAtFn set_value_at;
@@ -29,7 +27,6 @@ typedef struct {
GtkType e_table_simple_get_type (void);
ETableModel *e_table_simple_new (ETableSimpleColumnCountFn col_count,
- ETableSimpleColumnNameFn col_name,
ETableSimpleRowCountFn row_count,
ETableSimpleValueAtFn value_at,
ETableSimpleSetValueAtFn set_value_at,