added missing cast.

2005-05-31  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimpaction.c (gimp_action_set_proxy): added missing
	cast.
This commit is contained in:
Sven Neumann 2005-05-31 14:51:13 +00:00 committed by Sven Neumann
parent 5f52d2d515
commit 07d6c60432
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2005-05-31 Sven Neumann <sven@gimp.org>
* app/widgets/gimpaction.c (gimp_action_set_proxy): added missing
cast.
* app/core/gimpprojection-construct.c: code cleanup.
2005-05-31 Michael Natterer <mitch@gimp.org>

View File

@ -274,7 +274,7 @@ gimp_action_set_proxy (GimpAction *action,
{
const gchar *help_id;
help_id = g_object_get_qdata (proxy, GIMP_HELP_ID);
help_id = g_object_get_qdata (G_OBJECT (proxy), GIMP_HELP_ID);
gimp_help_set_help_data (proxy, tooltip, help_id);
g_free (tooltip);