diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-27 04:13:10 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-02 22:34:09 +0800 |
commit | a26bdd4ed4fe7e9fe511b53a013ae7b7e029710b (patch) | |
tree | cd56cc63ee06deb083b6ffaae89b2dc3075df86e /e-util/e-table-state.h | |
parent | 93987da1f5e4733e0eb0ba944f06809b4e4d52cb (diff) | |
download | gsoc2013-evolution-a26bdd4ed4fe7e9fe511b53a013ae7b7e029710b.tar.gz gsoc2013-evolution-a26bdd4ed4fe7e9fe511b53a013ae7b7e029710b.tar.zst gsoc2013-evolution-a26bdd4ed4fe7e9fe511b53a013ae7b7e029710b.zip |
ETableState: Convert the column index array to a column spec array.
Diffstat (limited to 'e-util/e-table-state.h')
-rw-r--r-- | e-util/e-table-state.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/e-util/e-table-state.h b/e-util/e-table-state.h index cd5d3e97fe..be7800163b 100644 --- a/e-util/e-table-state.h +++ b/e-util/e-table-state.h @@ -26,6 +26,7 @@ #include <libxml/tree.h> #include <e-util/e-table-sort-info.h> +#include <e-util/e-table-column-specification.h> /* Standard GObject macros */ #define E_TYPE_TABLE_STATE \ @@ -61,7 +62,7 @@ struct _ETableState { ETableSortInfo *sort_info; gint col_count; - gint *columns; + ETableColumnSpecification **column_specs; gdouble *expansions; }; |