From: cilix42 Date: Sun, 18 May 2008 18:27:17 +0000 (+0000) Subject: The declaration of doEffect_path() in lpe-skeleton.h should match the one in live_eff... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=04fca1803e564baabd66e7dd1db308de565487be;p=inkscape.git 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) --- 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: