diff options
author | Matthias Clasen <maclas@gmx.de> | 2003-08-24 22:06:52 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-08-24 22:06:52 +0000 |
commit | 32c6a944cfc5db7f59ee6232a8d76c04a27e908e (patch) | |
tree | 21bb0cd230bd2d06d4751bc5db10719909eb20bb /gtk/gtkactiongroup.h | |
parent | b374ae3fb4ff4a92a5ba0cb3f50a1ba9073875e1 (diff) | |
download | gtk+-32c6a944cfc5db7f59ee6232a8d76c04a27e908e.tar.gz |
Namespace the enum values properly. Sorry about the resize grip trouble,
2003-08-25 Matthias Clasen <maclas@gmx.de>
* gtk/gtkactiongroup.h (GtkActionGroupEntryType): Namespace the enum
values properly. Sorry about the resize grip trouble, Owen. (#120621)
* gtk/gtkactiongroup.c:
* demos/gtk-demo/appwindow.c:
* tests/testmerge.c:
* tests/testactions.c: Use new GtkActionGroupEntryType enum.
Diffstat (limited to 'gtk/gtkactiongroup.h')
-rw-r--r-- | gtk/gtkactiongroup.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkactiongroup.h b/gtk/gtkactiongroup.h index 523b05387f..1489006d85 100644 --- a/gtk/gtkactiongroup.h +++ b/gtk/gtkactiongroup.h @@ -69,9 +69,9 @@ struct _GtkActionGroupClass typedef enum { - NORMAL_ACTION, - TOGGLE_ACTION, - RADIO_ACTION + GTK_ACTION_NORMAL, + GTK_ACTION_TOGGLE, + GTK_ACTION_RADIO } GtkActionGroupEntryType; struct _GtkActionGroupEntry |