diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-06-10 03:00:03 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:26 +0800 |
commit | ce62390010057fad06b4aa7f1ee0ea08c90eb225 (patch) | |
tree | c19ff3974c73a9fda503deade9bebb34decd3a18 /widgets/misc/ea-cell-table.h | |
parent | 2229ecda966472146beb35cef60d3e374bd0b65a (diff) | |
download | gsoc2013-evolution-ce62390010057fad06b4aa7f1ee0ea08c90eb225.tar.gz gsoc2013-evolution-ce62390010057fad06b4aa7f1ee0ea08c90eb225.tar.zst gsoc2013-evolution-ce62390010057fad06b4aa7f1ee0ea08c90eb225.zip |
Replace G_CONST_RETURN with 'const'.
GLib is finally dropping this hack.
Diffstat (limited to 'widgets/misc/ea-cell-table.h')
-rw-r--r-- | widgets/misc/ea-cell-table.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/misc/ea-cell-table.h b/widgets/misc/ea-cell-table.h index bcd6efdc85..a13d7a52c7 100644 --- a/widgets/misc/ea-cell-table.h +++ b/widgets/misc/ea-cell-table.h @@ -47,11 +47,11 @@ gpointer ea_cell_table_get_cell_at_index (EaCellTable * cell_data, gboolean ea_cell_table_set_cell_at_index (EaCellTable * cell_data, gint index, gpointer cell); -G_CONST_RETURN gchar * +const gchar * ea_cell_table_get_column_label (EaCellTable * cell_data, gint column); void ea_cell_table_set_column_label (EaCellTable * cell_data, gint column, const gchar *label); -G_CONST_RETURN gchar * +const gchar * ea_cell_table_get_row_label (EaCellTable * cell_data, gint row); void ea_cell_table_set_row_label (EaCellTable * cell_data, gint row, const gchar *label); |