diff options
author | Matthias Clasen <mclasen@redhat.com> | 2007-09-09 20:08:31 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-09-09 20:08:31 +0000 |
commit | 29490c0448dc17f1255763ab57e640eefa369883 (patch) | |
tree | 640a5ace2c01537ec9d9c74d219bb7eb16435b1a /gtk/gtkprinteroptionwidget.c | |
parent | 5c4d0d697def00f674c047bb2b6a03cd37281d97 (diff) | |
download | gtk+-29490c0448dc17f1255763ab57e640eefa369883.tar.gz |
Remove trailing commas from enumerations, since some compilers don't like
2007-09-09 Matthias Clasen <mclasen@redhat.com>
* gtk/gtklinkbutton.c:
* gtk/gtkrecentfilter.c:
* gtk/gtkprinteroptionwidget.c: Remove trailing commas from
enumerations, since some compilers don't like them. (#467717)
svn path=/trunk/; revision=18771
Diffstat (limited to 'gtk/gtkprinteroptionwidget.c')
-rw-r--r-- | gtk/gtkprinteroptionwidget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprinteroptionwidget.c b/gtk/gtkprinteroptionwidget.c index 3e977687be..954da73cf8 100644 --- a/gtk/gtkprinteroptionwidget.c +++ b/gtk/gtkprinteroptionwidget.c @@ -73,7 +73,7 @@ enum { enum { PROP_0, - PROP_SOURCE, + PROP_SOURCE }; static guint signals[LAST_SIGNAL] = { 0 }; |