diff options
author | Federico Mena Quintero <federico@nuclecu.unam.mx> | 1998-08-04 09:55:18 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-08-04 09:55:18 +0800 |
commit | e095ce5ab86387d4b07a45f298fa85e690170456 (patch) | |
tree | 6acfeabb2f7db2dff5c4643cc45dd2807adbb4ee /calendar/main.c | |
parent | d19286255db80ef8cc50e8480edd26dea81ea53a (diff) | |
download | gsoc2013-evolution-e095ce5ab86387d4b07a45f298fa85e690170456.tar gsoc2013-evolution-e095ce5ab86387d4b07a45f298fa85e690170456.tar.gz gsoc2013-evolution-e095ce5ab86387d4b07a45f298fa85e690170456.tar.bz2 gsoc2013-evolution-e095ce5ab86387d4b07a45f298fa85e690170456.tar.lz gsoc2013-evolution-e095ce5ab86387d4b07a45f298fa85e690170456.tar.xz gsoc2013-evolution-e095ce5ab86387d4b07a45f298fa85e690170456.tar.zst gsoc2013-evolution-e095ce5ab86387d4b07a45f298fa85e690170456.zip |
Use an array of const strings to keep gcc happy.
1998-08-03 Federico Mena Quintero <federico@nuclecu.unam.mx>
* main.c (about_calendar_cmd): Use an array of const strings to
keep gcc happy.
* alarm.c (alarm_compare_by_time): Use gconstpointer to keep gcc happy.
* calendar.c (calendar_object_compare_by_start): Likewise.
* gncal-full-day.c (child_compare_by_start): Likewise.
svn path=/trunk/; revision=296
Diffstat (limited to 'calendar/main.c')
-rw-r--r-- | calendar/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/main.c b/calendar/main.c index 27042c3d2a..a769fa6df0 100644 --- a/calendar/main.c +++ b/calendar/main.c @@ -122,7 +122,7 @@ static void about_calendar_cmd (GtkWidget *widget, void *data) { GtkWidget *about; - gchar *authors[] = { + const gchar *authors[] = { "Miguel de Icaza (miguel@kernel.org)", "Federico Mena (quartic@gimp.org)", "Arturo Espinosa (arturo@nuclecu.unam.mx)", |