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 /tests/testmerge.c | |
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 'tests/testmerge.c')
-rw-r--r-- | tests/testmerge.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/testmerge.c b/tests/testmerge.c index 8e501af7a3..a352f3866a 100644 --- a/tests/testmerge.c +++ b/tests/testmerge.c @@ -66,16 +66,16 @@ static GtkActionGroupEntry entries[] = { G_CALLBACK (activate_action), NULL }, { "justify-left", NULL, GTK_STOCK_JUSTIFY_LEFT, "<control>L", N_("Left justify the text"), - G_CALLBACK (toggle_action), NULL, RADIO_ACTION, NULL }, + G_CALLBACK (toggle_action), NULL, GTK_ACTION_RADIO, NULL }, { "justify-center", NULL, GTK_STOCK_JUSTIFY_CENTER, "<control>E", N_("Center justify the text"), - G_CALLBACK (toggle_action), NULL, RADIO_ACTION, "justify-left" }, + G_CALLBACK (toggle_action), NULL, GTK_ACTION_RADIO, "justify-left" }, { "justify-right", NULL, GTK_STOCK_JUSTIFY_RIGHT, "<control>R", N_("Right justify the text"), - G_CALLBACK (toggle_action), NULL, RADIO_ACTION, "justify-left" }, + G_CALLBACK (toggle_action), NULL, GTK_ACTION_RADIO, "justify-left" }, { "justify-fill", NULL, GTK_STOCK_JUSTIFY_FILL, "<control>J", N_("Fill justify the text"), - G_CALLBACK (toggle_action), NULL, RADIO_ACTION, "justify-left" }, + G_CALLBACK (toggle_action), NULL, GTK_ACTION_RADIO, "justify-left" }, { "AboutAction", N_("_About"), NULL, NULL, NULL, G_CALLBACK (activate_action), NULL }, }; |