diff options
Diffstat (limited to 'widgets/e-table-group.h')
-rw-r--r-- | widgets/e-table-group.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/widgets/e-table-group.h b/widgets/e-table-group.h index ab79d317e9..d673aebd11 100644 --- a/widgets/e-table-group.h +++ b/widgets/e-table-group.h @@ -1,6 +1,8 @@ #ifndef _E_TABLE_TREE_H_ #define _E_TABLE_TREE_H_ +#include "e-table-model.h" + typedef struct { char *title; @@ -13,11 +15,11 @@ typedef struct { guint is_leaf :1; } ETableGroup; -ETableGroup *e_table_group_new (const char *title, ETableModel *table); -ETableGroup *e_table_group_new_leaf (const char *title); +ETableGroup *e_table_group_new (const char *title); +ETableGroup *e_table_group_new_leaf (const char *title, ETableModel *table); void e_table_group_destroy (ETableGroup *etg); int e_table_group_size (ETableGroup *egroup); -void e_table_group_append_child (ETableGroup *etg, ETableGroup *child) +void e_table_group_append_child (ETableGroup *etg, ETableGroup *child); #endif /* _E_TABLE_TREE_H_ */ |