mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-03 17:56:17 +01:00
Re-add G_PARAM_PRIVATE as a deprecated name for bit 5, since some language
2005-06-13 Matthias Clasen <mclasen@redhat.com> * gparam.h (GParamFlags): Re-add G_PARAM_PRIVATE as a deprecated name for bit 5, since some language bindings have it bound.
This commit is contained in:
parent
c7c71e600f
commit
7ba9d5000f
@ -1,3 +1,9 @@
|
|||||||
|
2005-06-13 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gparam.h (GParamFlags): Re-add G_PARAM_PRIVATE as a
|
||||||
|
deprecated name for bit 5, since some language bindings
|
||||||
|
have it bound.
|
||||||
|
|
||||||
2005-06-10 Matthias Clasen <mclasen@redhat.com>
|
2005-06-10 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* === Released 2.7.0 ===
|
* === Released 2.7.0 ===
|
||||||
|
@ -55,7 +55,10 @@ typedef enum
|
|||||||
G_PARAM_LAX_VALIDATION = 1 << 4,
|
G_PARAM_LAX_VALIDATION = 1 << 4,
|
||||||
G_PARAM_STATIC_NAME = 1 << 5,
|
G_PARAM_STATIC_NAME = 1 << 5,
|
||||||
G_PARAM_STATIC_NICK = 1 << 6,
|
G_PARAM_STATIC_NICK = 1 << 6,
|
||||||
G_PARAM_STATIC_BLURB = 1 << 7
|
G_PARAM_STATIC_BLURB = 1 << 7,
|
||||||
|
#ifndef G_DISABLE_DEPRECATED
|
||||||
|
G_PARAM_PRIVATE = G_PARAM_STATIC_NAME
|
||||||
|
#endif
|
||||||
} GParamFlags;
|
} GParamFlags;
|
||||||
#define G_PARAM_READWRITE (G_PARAM_READABLE | G_PARAM_WRITABLE)
|
#define G_PARAM_READWRITE (G_PARAM_READABLE | G_PARAM_WRITABLE)
|
||||||
#define G_PARAM_MASK (0x000000ff)
|
#define G_PARAM_MASK (0x000000ff)
|
||||||
|
Loading…
Reference in New Issue
Block a user