diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2009-02-19 22:37:11 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2009-02-19 22:37:11 +0000 |
| commit | 50fcbbef80d397e283fec3b2fff36815b49a1213 (patch) | |
| tree | 6f5ec0378f54450e37799c1a9981231d78ae4881 /src/live_effects/effect.cpp | |
| parent | Spell checker and filter translation (diff) | |
| download | inkscape-50fcbbef80d397e283fec3b2fff36815b49a1213.tar.gz inkscape-50fcbbef80d397e283fec3b2fff36815b49a1213.zip | |
Remove superfluous FreehandShape LPE
(bzr r7330)
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index e4a5b9b43..9a1c33eeb 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -112,7 +112,6 @@ const Util::EnumData<EffectType> LPETypeData[] = { {PATTERN_ALONG_PATH, N_("Pattern Along Path"), "skeletal"}, // for historic reasons, this effect is called skeletal(strokes) in Inkscape:SVG {CURVE_STITCH, N_("Stitch Sub-Paths"), "curvestitching"}, /* 0.47 */ - {FREEHAND_SHAPE, N_("Freehand Shape"), "freehand_shape"}, // this is actually a special type of PatternAlongPath, used to paste shapes in pen/pencil tool {KNOT, N_("Knot"), "knot"}, {CONSTRUCT_GRID, N_("Construct grid"), "construct_grid"}, {SPIRO, N_("Spiro spline"), "spiro"}, @@ -140,9 +139,6 @@ Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj) case PATTERN_ALONG_PATH: neweffect = static_cast<Effect*> ( new LPEPatternAlongPath(lpeobj) ); break; - case FREEHAND_SHAPE: - neweffect = static_cast<Effect*> ( new LPEFreehandShape(lpeobj) ); - break; case BEND_PATH: neweffect = static_cast<Effect*> ( new LPEBendPath(lpeobj) ); break; |
