summaryrefslogtreecommitdiffstats
path: root/src/widgets/toolbox.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-01-09 00:38:16 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-01-09 00:38:16 +0000
commit1fc5e7c6584d5edb03738d333139418731fb23ba (patch)
tree02fe5718eb2a283abcd3080d915f7504d51f20db /src/widgets/toolbox.cpp
parentEnable 3D box toolbar (diff)
downloadinkscape-1fc5e7c6584d5edb03738d333139418731fb23ba.tar.gz
inkscape-1fc5e7c6584d5edb03738d333139418731fb23ba.zip
fix compile. rename Proj::FINITE and INFINITE to VP_* because of apparent name clash on windows compile.
(bzr r4437)
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 37f122ca7..850018662 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -2544,7 +2544,7 @@ static void box3d_vp_state_changed( GtkToggleAction *act, GtkAction *box3d_angle
Persp3D *persp = *(sel_persps.begin());
bool set_infinite = gtk_toggle_action_get_active(act);
- persp3d_set_VP_state (persp, axis, set_infinite ? Proj::INFINITE : Proj::FINITE);
+ persp3d_set_VP_state (persp, axis, set_infinite ? Proj::VP_INFINITE : Proj::VP_FINITE);
}
static void box3d_vp_x_state_changed( GtkToggleAction *act, GtkAction *box3d_angle )