diff options
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 }, }; |