summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-05-18 18:27:17 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-05-18 18:27:17 +0000
commit8a07b12392ea73b608eae73379c4965872a0de60 (patch)
treebdc2081b60f87b21ebfd8ae98d80089f83daa8fd /src
parentupdate to latest 2geom (diff)
downloadinkscape-8a07b12392ea73b608eae73379c4965872a0de60.tar.gz
inkscape-8a07b12392ea73b608eae73379c4965872a0de60.zip
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)
(bzr r5690)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-skeleton.h2
1 files changed, 1 insertions, 1 deletions
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<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 Geom::Piecewise<Geom::D2<Geom::SBasis> > doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in);
private: