mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 23:16:14 +01:00
Make value_name and value_nick const in structs _GEnumValue and
2006-06-02 Behdad Esfahbod <behdad@gnome.org> * gobject/genum.h: Make value_name and value_nick const in structs _GEnumValue and _GFlagValue. (#317793)
This commit is contained in:
parent
a74af928cf
commit
934bc42c94
@ -1,3 +1,8 @@
|
||||
2006-06-02 Behdad Esfahbod <behdad@gnome.org>
|
||||
|
||||
* gobject/genum.h: Make value_name and value_nick const in structs
|
||||
_GEnumValue and _GFlagValue. (#317793)
|
||||
|
||||
2006-06-01 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gmain.h:
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-06-02 Behdad Esfahbod <behdad@gnome.org>
|
||||
|
||||
* gobject/genum.h: Make value_name and value_nick const in structs
|
||||
_GEnumValue and _GFlagValue. (#317793)
|
||||
|
||||
2006-06-01 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gmain.h:
|
||||
|
@ -69,14 +69,14 @@ struct _GFlagsClass
|
||||
struct _GEnumValue
|
||||
{
|
||||
gint value;
|
||||
gchar *value_name;
|
||||
gchar *value_nick;
|
||||
const gchar *value_name;
|
||||
const gchar *value_nick;
|
||||
};
|
||||
struct _GFlagsValue
|
||||
{
|
||||
guint value;
|
||||
gchar *value_name;
|
||||
gchar *value_nick;
|
||||
const gchar *value_name;
|
||||
const gchar *value_nick;
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user