aboutsummaryrefslogtreecommitdiffstats
path: root/a11y/ea-cell-table.c
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 /a11y/ea-cell-table.c
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 'a11y/ea-cell-table.c')
-rw-r--r--a11y/ea-cell-table.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/a11y/ea-cell-table.c b/a11y/ea-cell-table.c
index 8c0b9ee253..95ae59dea4 100644
--- a/a11y/ea-cell-table.c
+++ b/a11y/ea-cell-table.c
@@ -36,11 +36,11 @@ ea_cell_table_create (gint rows, gint columns, gboolean column_first)
cell_data->columns = columns;
cell_data->rows = rows;
- cell_data->column_labels = g_new0 (gchar*, columns);
+ cell_data->column_labels = g_new0 (gchar *, columns);
for (index = columns -1; index >= 0; --index)
cell_data->column_labels [index] = NULL;
- cell_data->row_labels = g_new0 (gchar*, rows);
+ cell_data->row_labels = g_new0 (gchar *, rows);
for (index = rows -1; index >= 0; --index)
cell_data->row_labels [index] = NULL;
@@ -142,7 +142,7 @@ ea_cell_table_set_cell_at_index (EaCellTable * cell_data,
return TRUE;
}
-G_CONST_RETURN gchar*
+G_CONST_RETURN gchar *
ea_cell_table_get_column_label (EaCellTable * cell_data,
gint column)
{
@@ -164,7 +164,7 @@ ea_cell_table_set_column_label (EaCellTable * cell_data,
cell_data->column_labels[column] = g_strdup(label);
}
-G_CONST_RETURN gchar*
+G_CONST_RETURN gchar *
ea_cell_table_get_row_label (EaCellTable * cell_data,
gint row)
{