diff options
author | nobody <nobody@localhost> | 1999-12-06 06:13:49 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-12-06 06:13:49 +0800 |
commit | 05e3d1002ae72055c52a356cad5aab41f4990e6a (patch) | |
tree | 1ccf57237d944e7088bd598f9ab0c5f6f859be2d /widgets/e-table-group.h | |
parent | d9c655cd489e0c2989669005b5fa5415c92f8097 (diff) | |
download | gsoc2013-evolution-BUG_BUDDY_0_6.tar.gz gsoc2013-evolution-BUG_BUDDY_0_6.tar.zst gsoc2013-evolution-BUG_BUDDY_0_6.zip |
This commit was manufactured by cvs2svn to create tagBUG_BUDDY_0_6
'BUG_BUDDY_0_6'.
svn path=/tags/BUG_BUDDY_0_6/; revision=1465
Diffstat (limited to 'widgets/e-table-group.h')
-rw-r--r-- | widgets/e-table-group.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/widgets/e-table-group.h b/widgets/e-table-group.h deleted file mode 100644 index d673aebd11..0000000000 --- a/widgets/e-table-group.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef _E_TABLE_TREE_H_ -#define _E_TABLE_TREE_H_ - -#include "e-table-model.h" - -typedef struct { - char *title; - - union { - ETableModel *table; - GSList *children; - } u; - - guint expanded :1; - guint is_leaf :1; -} ETableGroup; - -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); - -#endif /* _E_TABLE_TREE_H_ */ |