Code

Patch by Johan to fix crashing by undefined path parameters in 4 LPEs
[inkscape.git] / src / live_effects / lpe-curvestitch.h
index 0cb6b492eec30f234b14cd02dd1a59ed87f6f4e3..8a8e43f2c74a5f624485205c575c1d2436981ab7 100644 (file)
@@ -28,10 +28,12 @@ public:
     LPECurveStitch(LivePathEffectObject *lpeobject);
     virtual ~LPECurveStitch();
 
-    virtual std::vector<Geom::Path> doEffect_path (std::vector<Geom::Path> & path_in);
+    virtual std::vector<Geom::Path> doEffect_path (std::vector<Geom::Path> const & path_in);
 
     virtual void resetDefaults(SPItem * item);
 
+    virtual void transform_multiply(Geom::Matrix const& postmul, bool set);
+
 private:
     PathParam strokepath;
     ScalarParam nrofpaths;