diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-06-10 03:00:03 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-06-10 03:00:03 +0800 |
commit | 89d7c38c8bd3aac0060e7e8e3913507444c00608 (patch) | |
tree | 4caae638b8c5f92797818dbdb34c18daac74cbc7 /calendar/gui/ea-gnome-calendar.c | |
parent | cbbb6f2200af24a2e1d4f600b90127acb4ec5523 (diff) | |
download | gsoc2013-evolution-89d7c38c8bd3aac0060e7e8e3913507444c00608.tar.gz 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-gnome-calendar.c')
-rw-r--r-- | calendar/gui/ea-gnome-calendar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/ea-gnome-calendar.c b/calendar/gui/ea-gnome-calendar.c index 76a5a007e7..0983de84b9 100644 --- a/calendar/gui/ea-gnome-calendar.c +++ b/calendar/gui/ea-gnome-calendar.c @@ -42,7 +42,7 @@ static void ea_gcal_dates_change_cb (GnomeCalendar *gcal, gpointer data); static gpointer parent_class = NULL; -static G_CONST_RETURN gchar * +static const gchar * ea_gnome_calendar_get_name (AtkObject *accessible) { if (accessible->name) @@ -50,7 +50,7 @@ ea_gnome_calendar_get_name (AtkObject *accessible) return _("Gnome Calendar"); } -static G_CONST_RETURN gchar * +static const gchar * ea_gnome_calendar_get_description (AtkObject *accessible) { if (accessible->description) |