added missing cast.

2006-08-07  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimpactiongroup.c
	(gimp_action_group_add_string_actions): added missing cast.
This commit is contained in:
Sven Neumann 2006-08-07 08:31:50 +00:00 committed by Sven Neumann
parent efc66870f5
commit 14b9553a2c
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-08-07 Sven Neumann <sven@gimp.org>
* app/widgets/gimpactiongroup.c
(gimp_action_group_add_string_actions): added missing cast.
2006-08-06 Michael Natterer <mitch@gimp.org>
* libgimpbase/gimputils.c (gimp_strip_uline): restore unescaping

View file

@ -549,7 +549,8 @@ gimp_action_group_add_string_actions (GimpActionGroup *group,
gchar *label;
const gchar *tooltip;
label = g_strip_context (entries[i].label, gettext (entries[i].label));
label = (gchar *) g_strip_context (entries[i].label,
gettext (entries[i].label));
tooltip = gettext (entries[i].tooltip);
if (! group->mnemonics)