diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-27 08:50:01 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-02 22:34:08 +0800 |
commit | a6b1bc0c1ed2acea8a1e053560826e26a7f1246c (patch) | |
tree | 95d02ec6e632eeb4ddd0ba9eb2d5d071dd8e5cea /e-util/e-table-column-specification.h | |
parent | 37aae129f397e5973910ff227a0f18efb1b5d2fe (diff) | |
download | gsoc2013-evolution-a6b1bc0c1ed2acea8a1e053560826e26a7f1246c.tar.gz gsoc2013-evolution-a6b1bc0c1ed2acea8a1e053560826e26a7f1246c.tar.zst gsoc2013-evolution-a6b1bc0c1ed2acea8a1e053560826e26a7f1246c.zip |
ETableColumnSpecification: Make "sortable" a boolean.
Diffstat (limited to 'e-util/e-table-column-specification.h')
-rw-r--r-- | e-util/e-table-column-specification.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/e-util/e-table-column-specification.h b/e-util/e-table-column-specification.h index 0d4775f8ee..68ded2e6c4 100644 --- a/e-util/e-table-column-specification.h +++ b/e-util/e-table-column-specification.h @@ -64,13 +64,13 @@ struct _ETableColumnSpecification { gdouble expansion; gint minimum_width; - guint resizable : 1; - guint disabled : 1; + gboolean resizable; + gboolean disabled; + gboolean sortable; gchar *cell; gchar *compare; gchar *search; - gchar *sortable; gint priority; }; |