Remove trailing commas.

This commit is contained in:
Jon Kåre Hellan 2004-08-19 22:12:33 +00:00
parent a272e118cc
commit 3b1cf9d237
6 changed files with 22 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-08-20 Jon K Hellan <hellan@acm.org>
* glib/goption.h: Remove trailing commas.
2004-08-17 Matthias Clasen <mclasen@redhat.com>
* configure.in: Check for all four values of the

View File

@ -1,3 +1,7 @@
2004-08-20 Jon K Hellan <hellan@acm.org>
* glib/goption.h: Remove trailing commas.
2004-08-17 Matthias Clasen <mclasen@redhat.com>
* configure.in: Check for all four values of the

View File

@ -1,3 +1,7 @@
2004-08-20 Jon K Hellan <hellan@acm.org>
* glib/goption.h: Remove trailing commas.
2004-08-17 Matthias Clasen <mclasen@redhat.com>
* configure.in: Check for all four values of the

View File

@ -1,3 +1,7 @@
2004-08-20 Jon K Hellan <hellan@acm.org>
* glib/goption.h: Remove trailing commas.
2004-08-17 Matthias Clasen <mclasen@redhat.com>
* configure.in: Check for all four values of the

View File

@ -1,3 +1,7 @@
2004-08-20 Jon K Hellan <hellan@acm.org>
* glib/goption.h: Remove trailing commas.
2004-08-17 Matthias Clasen <mclasen@redhat.com>
* configure.in: Check for all four values of the

View File

@ -33,7 +33,7 @@ typedef struct _GOptionEntry GOptionEntry;
typedef enum
{
G_OPTION_FLAG_HIDDEN = 1 << 0,
G_OPTION_FLAG_IN_MAIN = 1 << 1,
G_OPTION_FLAG_IN_MAIN = 1 << 1
} GOptionFlags;
typedef enum
@ -44,7 +44,7 @@ typedef enum
G_OPTION_ARG_CALLBACK,
G_OPTION_ARG_FILENAME,
G_OPTION_ARG_STRING_ARRAY,
G_OPTION_ARG_FILENAME_ARRAY,
G_OPTION_ARG_FILENAME_ARRAY
} GOptionArg;
typedef gboolean (*GOptionArgFunc) (const gchar *option_name,