summaryrefslogtreecommitdiffstats
path: root/src/live_effects/effect.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebronyat-signgmaildotcom>2014-07-05 13:28:06 +0000
committerLiam P. White <inkscapebronyat-signgmaildotcom>2014-07-05 13:28:06 +0000
commit6456d475232772dac4f22f7e31b9b43a0155b335 (patch)
treed954c8837a33d62df2bc3df930e75f9234fc8691 /src/live_effects/effect.cpp
parentFix make check (diff)
parentPut correctly doubles in a function (diff)
downloadinkscape-6456d475232772dac4f22f7e31b9b43a0155b335.tar.gz
inkscape-6456d475232772dac4f22f7e31b9b43a0155b335.zip
Update to experimental r13418
(bzr r13090.1.87)
Diffstat (limited to 'src/live_effects/effect.cpp')
-rw-r--r--src/live_effects/effect.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp
index e51fb186e..01621822d 100644
--- a/src/live_effects/effect.cpp
+++ b/src/live_effects/effect.cpp
@@ -58,6 +58,7 @@
#include "live_effects/lpe-jointype.h"
#include "live_effects/lpe-taperstroke.h"
#include "live_effects/lpe-envelope-perspective.h"
+#include "live_effects/lpe-fillet-chamfer.h"
#include "xml/node-event-vector.h"
#include "sp-object.h"
@@ -302,6 +303,9 @@ Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj)
case ENVELOPE_PERSPECTIVE:
neweffect = static_cast<Effect*> ( new LPEEnvelopePerspective(lpeobj) );
break;
+ case FILLET_CHAMFER:
+ neweffect = static_cast<Effect*> ( new LPEFilletChamfer(lpeobj) );
+ break;
default:
g_warning("LivePathEffect::Effect::New called with invalid patheffect type (%d)", lpenr);
neweffect = NULL;