From bf13970ddb262765e5207c72d65f8083088c2a79 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 28 Feb 2008 05:41:56 +0000 Subject: [PATCH] Remove trailing comma from enum to make the compiler happy. (#517295, 2008-02-28 Matthias Clasen * gtk/gtkcalendar.h: Remove trailing comma from enum to make the compiler happy. (#517295, Sylvain Pasche) svn path=/trunk/; revision=19671 --- ChangeLog | 5 +++++ gtk/gtkcalendar.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b6b91ab130..5126446a70 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-28 Matthias Clasen + + * gtk/gtkcalendar.h: Remove trailing comma from enum to + make the compiler happy. (#517295, Sylvain Pasche) + 2008-02-27 Michael Natterer * gtk/gtkmenushell.c diff --git a/gtk/gtkcalendar.h b/gtk/gtkcalendar.h index 1e6ff9d39c..be62f1bc77 100644 --- a/gtk/gtkcalendar.h +++ b/gtk/gtkcalendar.h @@ -72,7 +72,7 @@ typedef enum GTK_CALENDAR_NO_MONTH_CHANGE = 1 << 2, GTK_CALENDAR_SHOW_WEEK_NUMBERS = 1 << 3, GTK_CALENDAR_WEEK_START_MONDAY = 1 << 4, - GTK_CALENDAR_SHOW_DETAILS = 1 << 5, + GTK_CALENDAR_SHOW_DETAILS = 1 << 5 } GtkCalendarDisplayOptions; /**