From: cilix42 Date: Tue, 26 Jun 2007 07:35:31 +0000 (+0000) Subject: Complete fix of cast causing compile error on x86-64 (see commit no. 15178) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9faee933fd2064211d0ed908c43790a052be6328;p=inkscape.git Complete fix of cast causing compile error on x86-64 (see commit no. 15178) --- diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp index 67338cbcf..d3018b0d9 100644 --- a/src/widgets/toolbox.cpp +++ b/src/widgets/toolbox.cpp @@ -2145,7 +2145,7 @@ static void sp_3dbox_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainAction "toggle_vp_x", Inkscape::ICON_SIZE_DECORATION ); gtk_action_group_add_action( mainActions, GTK_ACTION( act ) ); - g_signal_connect_after( G_OBJECT(act), "toggled", G_CALLBACK(sp_3dbox_toggle_vp_changed), (gpointer) 0); + g_signal_connect_after( G_OBJECT(act), "toggled", G_CALLBACK(sp_3dbox_toggle_vp_changed), GUINT_TO_POINTER(0)); if (SP3DBoxContext::current_perspective) { toggled = SP3DBoxContext::current_perspective->get_vanishing_point(Box3D::X)->is_finite(); } @@ -2160,7 +2160,7 @@ static void sp_3dbox_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainAction "toggle_vp_y", Inkscape::ICON_SIZE_DECORATION ); gtk_action_group_add_action( mainActions, GTK_ACTION( act ) ); - g_signal_connect_after( G_OBJECT(act), "toggled", G_CALLBACK(sp_3dbox_toggle_vp_changed), (gpointer) 1); + g_signal_connect_after( G_OBJECT(act), "toggled", G_CALLBACK(sp_3dbox_toggle_vp_changed), GUINT_TO_POINTER(1)); if (SP3DBoxContext::current_perspective) { toggled = SP3DBoxContext::current_perspective->get_vanishing_point(Box3D::Y)->is_finite(); } @@ -2175,7 +2175,7 @@ static void sp_3dbox_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainAction "toggle_vp_z", Inkscape::ICON_SIZE_DECORATION ); gtk_action_group_add_action( mainActions, GTK_ACTION( act ) ); - g_signal_connect_after( G_OBJECT(act), "toggled", G_CALLBACK(sp_3dbox_toggle_vp_changed), (gpointer) 2); + g_signal_connect_after( G_OBJECT(act), "toggled", G_CALLBACK(sp_3dbox_toggle_vp_changed), GUINT_TO_POINTER(2)); if (SP3DBoxContext::current_perspective) { toggled = SP3DBoxContext::current_perspective->get_vanishing_point(Box3D::Z)->is_finite(); }