Avoid a warning. (#308295, Murray Cumming).

2005-06-19  Matthias Clasen  <mclasen@redhat.com>

	* gparam.h (GParamFlags): Avoid a warning.  (#308295,
	Murray Cumming).
This commit is contained in:
Matthias Clasen 2005-06-20 03:09:35 +00:00 committed by Matthias Clasen
parent 3a7a096682
commit e884a3954b
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-06-19 Matthias Clasen <mclasen@redhat.com>
* gparam.h (GParamFlags): Avoid a warning. (#308295,
Murray Cumming).
2005-06-13 Matthias Clasen <mclasen@redhat.com>
* gparam.h (GParamFlags): Re-add G_PARAM_PRIVATE as a

View File

@ -54,11 +54,11 @@ typedef enum
G_PARAM_CONSTRUCT_ONLY = 1 << 3,
G_PARAM_LAX_VALIDATION = 1 << 4,
G_PARAM_STATIC_NAME = 1 << 5,
G_PARAM_STATIC_NICK = 1 << 6,
G_PARAM_STATIC_BLURB = 1 << 7,
#ifndef G_DISABLE_DEPRECATED
G_PARAM_PRIVATE = G_PARAM_STATIC_NAME
G_PARAM_PRIVATE = G_PARAM_STATIC_NAME,
#endif
G_PARAM_STATIC_NICK = 1 << 6,
G_PARAM_STATIC_BLURB = 1 << 7
} GParamFlags;
#define G_PARAM_READWRITE (G_PARAM_READABLE | G_PARAM_WRITABLE)
#define G_PARAM_MASK (0x000000ff)