Remove trailing comma from enum to make the compiler happy. (#517295,

2008-02-28  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkcalendar.h: Remove trailing comma from enum to
        make the compiler happy.  (#517295, Sylvain Pasche)



svn path=/trunk/; revision=19671
This commit is contained in:
Matthias Clasen 2008-02-28 05:41:56 +00:00 committed by Matthias Clasen
parent 45debfb0ef
commit bf13970ddb
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-02-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcalendar.h: Remove trailing comma from enum to
make the compiler happy. (#517295, Sylvain Pasche)
2008-02-27 Michael Natterer <mitch@imendio.com>
* gtk/gtkmenushell.c

View File

@ -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;
/**