mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-24 21:16:15 +01:00
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:
parent
3a7a096682
commit
e884a3954b
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user