aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-state.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-27 23:13:25 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-29 00:13:23 +0800
commitfad4af8a3d4c6f50f7bcceca8d545eb17d6fd056 (patch)
treeae78be371695c3dc18847b87d3f014f985aa3a40 /widgets/table/e-table-state.h
parent6f5464f34ceec9e5701e3e3e651a40f9e6b3a072 (diff)
downloadgsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.gz
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.bz2
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.lz
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.xz
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.zst
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.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);