From 04fca1803e564baabd66e7dd1db308de565487be Mon Sep 17 00:00:00 2001 From: cilix42 Date: Sun, 18 May 2008 18:27:17 +0000 Subject: [PATCH] The declaration of doEffect_path() in lpe-skeleton.h should match the one in live_effects/effect.h to ensure proper overloading (otherwise only the implementation in effect.h is called which does nothingsvn diff) --- src/live_effects/lpe-skeleton.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/live_effects/lpe-skeleton.h b/src/live_effects/lpe-skeleton.h index 6522e9ca3..5a7916e34 100644 --- a/src/live_effects/lpe-skeleton.h +++ b/src/live_effects/lpe-skeleton.h @@ -28,7 +28,7 @@ public: // Choose to implement one of the doEffect functions. You can delete or comment out the others. // virtual void doEffect (SPCurve * curve); -// virtual std::vector doEffect_path (std::vector & path_in); +// virtual std::vector doEffect_path (std::vector const & path_in); virtual Geom::Piecewise > doEffect_pwd2 (Geom::Piecewise > const & pwd2_in); private: -- 2.30.2