diff options
author | Matthias Clasen <maclas@gmx.de> | 2004-02-19 20:26:25 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-02-19 20:26:25 +0000 |
commit | bce0b90f7cd73644d3c80238a76e5bb67ab42609 (patch) | |
tree | 5ee5f72b40c64d484aad04245c9a69212e2b0be7 /gtk/gtkactiongroup.c | |
parent | 1d377e1b3dde718c51087b2e27ddce6d16cbef82 (diff) | |
download | gdk-pixbuf-bce0b90f7cd73644d3c80238a76e5bb67ab42609.tar.gz |
Give each radio action its own value. (#134889, Paolo Borelli)
Thu Feb 19 21:26:10 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkactiongroup.c (gtk_action_group_add_radio_actions_full):
Give each radio action its own value. (#134889, Paolo Borelli)
Diffstat (limited to 'gtk/gtkactiongroup.c')
-rw-r--r-- | gtk/gtkactiongroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkactiongroup.c b/gtk/gtkactiongroup.c index fb172cef3..67cc65247 100644 --- a/gtk/gtkactiongroup.c +++ b/gtk/gtkactiongroup.c @@ -989,7 +989,7 @@ gtk_action_group_add_radio_actions_full (GtkActionGroup *action_group, label, tooltip, entries[i].stock_id, - value); + entries[i].value); if (i == 0) first_action = action; |