mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02: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:
committed by
Matthias Clasen
parent
3a7a096682
commit
e884a3954b
@@ -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)
|
||||
|
Reference in New Issue
Block a user