From 9a2c4ca30ed332442428594438848b9de2e589a9 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Fri, 4 Oct 2013 23:18:20 +0200 Subject: C++ (bzr r12659) --- src/box3d-side.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/box3d-side.cpp') diff --git a/src/box3d-side.cpp b/src/box3d-side.cpp index 4d8b1e2d7..c2b95203a 100644 --- a/src/box3d-side.cpp +++ b/src/box3d-side.cpp @@ -207,7 +207,7 @@ void Box3DSide::set_shape() { * This is very important for LPEs to work properly! (the bbox might be recalculated depending on the curve in shape)*/ this->setCurveInsync( c, TRUE); - if (hasPathEffect() && sp_lpe_item_path_effects_enabled(this)) { + if (hasPathEffect() && pathEffectsEnabled()) { SPCurve *c_lpe = c->copy(); bool success = sp_lpe_item_perform_path_effect(this, c_lpe); -- cgit v1.2.3 From 4f857ae84089672e9c7378d327e54889f64c62fb Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Fri, 4 Oct 2013 23:57:28 +0200 Subject: C++ (bzr r12660) --- src/box3d-side.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/box3d-side.cpp') diff --git a/src/box3d-side.cpp b/src/box3d-side.cpp index c2b95203a..040b031c6 100644 --- a/src/box3d-side.cpp +++ b/src/box3d-side.cpp @@ -209,7 +209,7 @@ void Box3DSide::set_shape() { if (hasPathEffect() && pathEffectsEnabled()) { SPCurve *c_lpe = c->copy(); - bool success = sp_lpe_item_perform_path_effect(this, c_lpe); + bool success = this->performPathEffect(c_lpe); if (success) { this->setCurveInsync(c_lpe, TRUE); -- cgit v1.2.3