]> Pileus Git - ~andy/gtk/commitdiff
Remove trailing comma from enum to make the compiler happy. (#517295,
authorMatthias Clasen <mclasen@redhat.com>
Thu, 28 Feb 2008 05:41:56 +0000 (05:41 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 28 Feb 2008 05:41:56 +0000 (05:41 +0000)
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

ChangeLog
gtk/gtkcalendar.h

index b6b91ab130f2ee26a2952c6a02e78572cbd80fad..5126446a701efda977f2b803f12f79575572e922 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 1e6ff9d39c84c6837137a7ecc38f8fc79779f099..be62f1bc778cead16c05ef2e177d3e65e1003c6e 100644 (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;
 
 /**