From 72f6706daefad31dd0a93b315e03269dac18e2ad Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Wed, 16 Jul 2008 21:42:46 +0000 Subject: add lpe-Boolops (bzr r6334) --- src/live_effects/effect.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/live_effects/effect.cpp') diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 4c74d56a6..ad9024772 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -62,6 +62,7 @@ #include "live_effects/lpe-copy_rotate.h" #include "live_effects/lpe-offset.h" #include "live_effects/lpe-ruler.h" +#include "live_effects/lpe-boolops.h" // end of includes namespace Inkscape { @@ -96,6 +97,7 @@ const Util::EnumData LPETypeData[INVALID_LPE] = { {COPY_ROTATE, N_("Rotate copies"), "copy_rotate"}, {OFFSET, N_("Offset"), "offset"}, {RULER, N_("Ruler"), "ruler"}, + {BOOLOPS, N_("Boolops"), "boolops"}, }; const Util::EnumDataConverter LPETypeConverter(LPETypeData, INVALID_LPE); @@ -178,6 +180,9 @@ Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj) case RULER: neweffect = static_cast ( new LPERuler(lpeobj) ); break; + case BOOLOPS: + neweffect = static_cast ( new LPEBoolops(lpeobj) ); + break; default: g_warning("LivePathEffect::Effect::New called with invalid patheffect type (%d)", lpenr); neweffect = NULL; -- cgit v1.2.3