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 /calendar/gui/ea-gnome-calendar.c | |
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 '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) |