From 6656f85e23e1638d41a772a46e2ad5dd2c4bfaec Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Fri, 15 Feb 2019 15:22:55 +0100 Subject: Fix compiling issues --- src/live_effects/effect.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/live_effects/effect.cpp') diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 67a760d6f..ca166c0c2 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -25,7 +25,7 @@ #include "live_effects/lpe-constructgrid.h" #include "live_effects/lpe-copy_rotate.h" #include "live_effects/lpe-curvestitch.h" -#include "live_effects/lpe-dash-stroke.h" +#include "live_effects/lpe-dashed-stroke.h" #include "live_effects/lpe-dynastroke.h" #include "live_effects/lpe-ellipse_5pts.h" #include "live_effects/lpe-envelope.h" @@ -1059,8 +1059,8 @@ Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj) case PTS2ELLIPSE: neweffect = static_cast ( new LPEPts2Ellipse(lpeobj) ); break; - case DASH_STROKE: - neweffect = static_cast ( new LPEDashStroke(lpeobj) ); + case DASHED_STROKE: + neweffect = static_cast ( new LPEDashedStroke(lpeobj) ); break; default: g_warning("LivePathEffect::Effect::New called with invalid patheffect type (%d)", lpenr); -- cgit v1.2.3