mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Remove C99isms. (Morten Welinder)
2003-08-25 Matthias Clasen <maclas@gmx.de> * gtk/gtkactiongroup.c (gtk_action_group_add_actions): Remove C99isms. (Morten Welinder)
This commit is contained in:
parent
bfa5c5aa4e
commit
04a47f28c2
@ -1,5 +1,8 @@
|
||||
2003-08-25 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_add_actions): Remove C99isms. (Morten
|
||||
Welinder)
|
||||
|
||||
* gtk/gtkactiongroup.[hc] (gtk_action_group_set_translate_func,
|
||||
gtk_action_group_set_translation_domain): Hooks for translation of
|
||||
label and tooltip in GtkActionGroupEntries. (#120620)
|
||||
|
@ -1,5 +1,8 @@
|
||||
2003-08-25 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_add_actions): Remove C99isms. (Morten
|
||||
Welinder)
|
||||
|
||||
* gtk/gtkactiongroup.[hc] (gtk_action_group_set_translate_func,
|
||||
gtk_action_group_set_translation_domain): Hooks for translation of
|
||||
label and tooltip in GtkActionGroupEntries. (#120620)
|
||||
|
@ -1,5 +1,8 @@
|
||||
2003-08-25 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_add_actions): Remove C99isms. (Morten
|
||||
Welinder)
|
||||
|
||||
* gtk/gtkactiongroup.[hc] (gtk_action_group_set_translate_func,
|
||||
gtk_action_group_set_translation_domain): Hooks for translation of
|
||||
label and tooltip in GtkActionGroupEntries. (#120620)
|
||||
|
@ -1,5 +1,8 @@
|
||||
2003-08-25 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_add_actions): Remove C99isms. (Morten
|
||||
Welinder)
|
||||
|
||||
* gtk/gtkactiongroup.[hc] (gtk_action_group_set_translate_func,
|
||||
gtk_action_group_set_translation_domain): Hooks for translation of
|
||||
label and tooltip in GtkActionGroupEntries. (#120620)
|
||||
|
@ -1,5 +1,8 @@
|
||||
2003-08-25 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_add_actions): Remove C99isms. (Morten
|
||||
Welinder)
|
||||
|
||||
* gtk/gtkactiongroup.[hc] (gtk_action_group_set_translate_func,
|
||||
gtk_action_group_set_translation_domain): Hooks for translation of
|
||||
label and tooltip in GtkActionGroupEntries. (#120620)
|
||||
|
@ -293,8 +293,12 @@ gtk_action_group_add_actions (GtkActionGroup *action_group,
|
||||
guint n_entries)
|
||||
{
|
||||
guint i;
|
||||
GtkTranslateFunc translate_func;
|
||||
gpointer translate_data;
|
||||
|
||||
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
||||
GtkTranslateFunc translate_func = action_group->private_data->translate_func;
|
||||
|
||||
translate_func = action_group->private_data->translate_func;
|
||||
gpointer translate_data = action_group->private_data->translate_data;
|
||||
|
||||
for (i = 0; i < n_entries; i++)
|
||||
|
Loading…
Reference in New Issue
Block a user