diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-30 23:07:02 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-02 22:34:10 +0800 |
commit | c337e2af1880b2833b8bd7180c02eac192f9d86b (patch) | |
tree | 3c9d576d21f700f844f85bd9d37bf84862b1789e /e-util/e-table-specification.h | |
parent | 44c74e5e9d5baa0d8856ac601eae4d492b0555a3 (diff) | |
download | gsoc2013-evolution-c337e2af1880b2833b8bd7180c02eac192f9d86b.tar.gz gsoc2013-evolution-c337e2af1880b2833b8bd7180c02eac192f9d86b.tar.zst gsoc2013-evolution-c337e2af1880b2833b8bd7180c02eac192f9d86b.zip |
Reimplement e_table_specification_load_from_string().
New parser implementation that uses GMarkupParser instead of libxml2.
Diffstat (limited to 'e-util/e-table-specification.h')
-rw-r--r-- | e-util/e-table-specification.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/e-util/e-table-specification.h b/e-util/e-table-specification.h index 09b86c3791..bce9c38f6a 100644 --- a/e-util/e-table-specification.h +++ b/e-util/e-table-specification.h @@ -61,16 +61,16 @@ struct _ETableSpecification { ETableState *state; - guint alternating_row_colors : 1; - guint no_headers : 1; - guint click_to_add : 1; - guint click_to_add_end : 1; - guint horizontal_draw_grid : 1; - guint vertical_draw_grid : 1; - guint draw_focus : 1; - guint horizontal_scrolling : 1; - guint horizontal_resize : 1; - guint allow_grouping : 1; + gboolean alternating_row_colors; + gboolean no_headers; + gboolean click_to_add; + gboolean click_to_add_end; + gboolean horizontal_draw_grid; + gboolean vertical_draw_grid; + gboolean draw_focus; + gboolean horizontal_scrolling; + gboolean horizontal_resize; + gboolean allow_grouping; GtkSelectionMode selection_mode; ECursorMode cursor_mode; |