aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/ea-week-view-cell.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-06-10 03:00:03 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-06-10 03:00:03 +0800
commit89d7c38c8bd3aac0060e7e8e3913507444c00608 (patch)
tree4caae638b8c5f92797818dbdb34c18daac74cbc7 /calendar/gui/ea-week-view-cell.c
parentcbbb6f2200af24a2e1d4f600b90127acb4ec5523 (diff)
downloadgsoc2013-evolution-89d7c38c8bd3aac0060e7e8e3913507444c00608.tar
gsoc2013-evolution-89d7c38c8bd3aac0060e7e8e3913507444c00608.tar.gz
gsoc2013-evolution-89d7c38c8bd3aac0060e7e8e3913507444c00608.tar.bz2
gsoc2013-evolution-89d7c38c8bd3aac0060e7e8e3913507444c00608.tar.lz
gsoc2013-evolution-89d7c38c8bd3aac0060e7e8e3913507444c00608.tar.xz
gsoc2013-evolution-89d7c38c8bd3aac0060e7e8e3913507444c00608.tar.zst
gsoc2013-evolution-89d7c38c8bd3aac0060e7e8e3913507444c00608.zip
Replace G_CONST_RETURN with 'const'.
GLib is finally dropping this hack.
Diffstat (limited to 'calendar/gui/ea-week-view-cell.c')
-rw-r--r--calendar/gui/ea-week-view-cell.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/ea-week-view-cell.c b/calendar/gui/ea-week-view-cell.c
index 299c730142..506a5f5724 100644
--- a/calendar/gui/ea-week-view-cell.c
+++ b/calendar/gui/ea-week-view-cell.c
@@ -93,8 +93,8 @@ e_week_view_cell_new (EWeekView *week_view, gint row, gint column)
static void ea_week_view_cell_class_init (EaWeekViewCellClass *klass);
-static G_CONST_RETURN gchar * ea_week_view_cell_get_name (AtkObject *accessible);
-static G_CONST_RETURN gchar * ea_week_view_cell_get_description (AtkObject *accessible);
+static const gchar * ea_week_view_cell_get_name (AtkObject *accessible);
+static const gchar * ea_week_view_cell_get_description (AtkObject *accessible);
static AtkStateSet* ea_week_view_cell_ref_state_set (AtkObject *obj);
static AtkObject * ea_week_view_cell_get_parent (AtkObject *accessible);
static gint ea_week_view_cell_get_index_in_parent (AtkObject *accessible);
@@ -200,7 +200,7 @@ static void ea_week_view_cell_finalize (GObject *object)
}
#endif
-static G_CONST_RETURN gchar *
+static const gchar *
ea_week_view_cell_get_name (AtkObject *accessible)
{
AtkGObjectAccessible *atk_gobj;
@@ -246,7 +246,7 @@ ea_week_view_cell_get_name (AtkObject *accessible)
return accessible->name;
}
-static G_CONST_RETURN gchar *
+static const gchar *
ea_week_view_cell_get_description (AtkObject *accessible)
{
return ea_week_view_cell_get_name (accessible);