diff options
Diffstat (limited to 'calendar/gui/ea-week-view.c')
-rw-r--r-- | calendar/gui/ea-week-view.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/ea-week-view.c b/calendar/gui/ea-week-view.c index ec9c5af3f9..c431f2ce14 100644 --- a/calendar/gui/ea-week-view.c +++ b/calendar/gui/ea-week-view.c @@ -33,8 +33,8 @@ static void ea_week_view_class_init (EaWeekViewClass *klass); -static G_CONST_RETURN gchar * ea_week_view_get_name (AtkObject *accessible); -static G_CONST_RETURN gchar * ea_week_view_get_description (AtkObject *accessible); +static const gchar * ea_week_view_get_name (AtkObject *accessible); +static const gchar * ea_week_view_get_description (AtkObject *accessible); static gint ea_week_view_get_n_children (AtkObject *obj); static AtkObject* ea_week_view_ref_child (AtkObject *obj, gint i); @@ -121,7 +121,7 @@ ea_week_view_new (GtkWidget *widget) return accessible; } -static G_CONST_RETURN gchar * +static const gchar * ea_week_view_get_name (AtkObject *accessible) { EWeekView *week_view; @@ -170,7 +170,7 @@ ea_week_view_get_name (AtkObject *accessible) return accessible->name; } -static G_CONST_RETURN gchar * +static const gchar * ea_week_view_get_description (AtkObject *accessible) { EWeekView *week_view; |