diff options
author | Matthias Clasen <maclas@gmx.de> | 2004-01-07 22:02:02 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-01-07 22:02:02 +0000 |
commit | bc3d9ffadf5478f4d18ee5d1dd4fdb1131a0eedd (patch) | |
tree | de360456b1998da26b238cf4ecf11c89fce93a93 /gtk/gtkactiongroup.h | |
parent | a11e45a1ebc9574ea3a60f6bc031affecd088208 (diff) | |
download | gdk-pixbuf-bc3d9ffadf5478f4d18ee5d1dd4fdb1131a0eedd.tar.gz |
Remove the redundant name and stock_id parameters, adjust all callers.
Wed Jan 7 23:03:32 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkactiongroup.h:
* gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel):
Remove the redundant name and stock_id parameters, adjust all callers.
Diffstat (limited to 'gtk/gtkactiongroup.h')
-rw-r--r-- | gtk/gtkactiongroup.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk/gtkactiongroup.h b/gtk/gtkactiongroup.h index bd4ff94f6..c4ef39b55 100644 --- a/gtk/gtkactiongroup.h +++ b/gtk/gtkactiongroup.h @@ -112,10 +112,8 @@ GList *gtk_action_group_list_actions (GtkActionGroup * void gtk_action_group_add_action (GtkActionGroup *action_group, GtkAction *action); void gtk_action_group_add_action_with_accel (GtkActionGroup *action_group, - GtkAction *action, - const char *name, - const char *accelerator, - const char *stock_id); + GtkAction *action, + const gchar *accelerator); void gtk_action_group_remove_action (GtkActionGroup *action_group, GtkAction *action); |