summaryrefslogtreecommitdiffstats
path: root/src/widgets/toolbox.cpp
diff options
context:
space:
mode:
authorgustav_b <gustav_b@users.sourceforge.net>2007-06-24 14:47:56 +0000
committergustav_b <gustav_b@users.sourceforge.net>2007-06-24 14:47:56 +0000
commitc134c3b6ac68e56626697e691b495a96d691bb23 (patch)
treec7878c5de1163e25d8bc6bbec193803e8da58a6e /src/widgets/toolbox.cpp
parentmore pyxml to lxml conversion. (diff)
downloadinkscape-c134c3b6ac68e56626697e691b495a96d691bb23.tar.gz
inkscape-c134c3b6ac68e56626697e691b495a96d691bb23.zip
Fix cast causing compile error on x86-64
(bzr r3093)
Diffstat (limited to 'src/widgets/toolbox.cpp')
-rw-r--r--src/widgets/toolbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index 4c497134f..67338cbcf 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -2106,7 +2106,7 @@ static void sp_rect_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions
static void sp_3dbox_toggle_vp_changed( GtkToggleAction *act, gpointer data )
{
- guint dir = (guint) data;
+ guint dir = GPOINTER_TO_UINT(data);
Box3D::PerspDir axis;// = (Box3D::PerspDir) data;
GString *pstring;