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:
Matthias Clasen 2005-06-13 18:08:05 +00:00 committed by Matthias Clasen
parent c7c71e600f
commit 7ba9d5000f
2 changed files with 10 additions and 1 deletions

View File

@ -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>
* === Released 2.7.0 ===

View File

@ -55,7 +55,10 @@ typedef enum
G_PARAM_LAX_VALIDATION = 1 << 4,
G_PARAM_STATIC_NAME = 1 << 5,
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;
#define G_PARAM_READWRITE (G_PARAM_READABLE | G_PARAM_WRITABLE)
#define G_PARAM_MASK (0x000000ff)