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/sp-ellipse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sp-ellipse.cpp') diff --git a/src/sp-ellipse.cpp b/src/sp-ellipse.cpp index 80e57afc3..8f74b2643 100644 --- a/src/sp-ellipse.cpp +++ b/src/sp-ellipse.cpp @@ -205,7 +205,7 @@ void SPGenericEllipse::set_shape() this->setCurveInsync(curve, TRUE); this->setCurveBeforeLPE(curve); - if (hasPathEffect() && sp_lpe_item_path_effects_enabled(this)) { + if (hasPathEffect() && pathEffectsEnabled()) { SPCurve *c_lpe = curve->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/sp-ellipse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sp-ellipse.cpp') diff --git a/src/sp-ellipse.cpp b/src/sp-ellipse.cpp index 8f74b2643..06201859f 100644 --- a/src/sp-ellipse.cpp +++ b/src/sp-ellipse.cpp @@ -207,7 +207,7 @@ void SPGenericEllipse::set_shape() if (hasPathEffect() && pathEffectsEnabled()) { SPCurve *c_lpe = curve->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