added casts to please the compiler.

2004-04-30  Sven Neumann  <sven@gimp.org>

	* app/gui/tool-options-menu.c: added casts to please the compiler.
This commit is contained in:
Sven Neumann
2004-04-30 17:11:07 +00:00
committed by Sven Neumann
parent 7d7ef188fa
commit 8766f89e02
3 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2004-04-30 Sven Neumann <sven@gimp.org>
* app/gui/tool-options-menu.c: added casts to please the compiler.
2004-04-30 Michael Natterer <mitch@gimp.org>
* app/widgets/gimpuimanager.[ch]: added signal "update" which

View File

@ -59,10 +59,10 @@ tool_options_menu_setup (GimpUIManager *manager,
{
g_signal_connect (manager, "update",
G_CALLBACK (tool_options_menu_update),
ui_path);
(gpointer) ui_path);
g_signal_connect_after (manager, "update",
G_CALLBACK (tool_options_menu_update_after),
ui_path);
(gpointer) ui_path);
}

View File

@ -59,10 +59,10 @@ tool_options_menu_setup (GimpUIManager *manager,
{
g_signal_connect (manager, "update",
G_CALLBACK (tool_options_menu_update),
ui_path);
(gpointer) ui_path);
g_signal_connect_after (manager, "update",
G_CALLBACK (tool_options_menu_update_after),
ui_path);
(gpointer) ui_path);
}