aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-state.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-27 22:29:19 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-27 22:29:19 +0800
commit948235c3d1076dbe6ed2e57a24c16a083bbd9f01 (patch)
tree4133b1adfd94d8f889ca7ad4ad851346518f4171 /widgets/table/e-table-state.h
parentcc3a98fc1ad5bb87aa7335f3de404ee7feee1541 (diff)
downloadgsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar.gz
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar.bz2
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar.lz
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar.xz
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar.zst
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.zip
Prefer GLib basic types over C types.
Diffstat (limited to 'widgets/table/e-table-state.h')
-rw-r--r--widgets/table/e-table-state.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/widgets/table/e-table-state.h b/widgets/table/e-table-state.h
index 7a320c56ba..da3f11b93c 100644
--- a/widgets/table/e-table-state.h
+++ b/widgets/table/e-table-state.h
@@ -40,8 +40,8 @@ typedef struct {
GObject base;
ETableSortInfo *sort_info;
- int col_count;
- int *columns;
+ gint col_count;
+ gint *columns;
double *expansions;
} ETableState;
@@ -52,18 +52,18 @@ typedef struct {
GType e_table_state_get_type (void);
ETableState *e_table_state_new (void);
-ETableState *e_table_state_vanilla (int col_count);
+ETableState *e_table_state_vanilla (gint col_count);
gboolean e_table_state_load_from_file (ETableState *state,
- const char *filename);
+ const gchar *filename);
void e_table_state_load_from_string (ETableState *state,
- const char *xml);
+ const gchar *xml);
void e_table_state_load_from_node (ETableState *state,
const xmlNode *node);
void e_table_state_save_to_file (ETableState *state,
- const char *filename);
-char *e_table_state_save_to_string (ETableState *state);
+ const gchar *filename);
+gchar *e_table_state_save_to_string (ETableState *state);
xmlNode *e_table_state_save_to_node (ETableState *state,
xmlNode *parent);
ETableState *e_table_state_duplicate (ETableState *state);