summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-skeleton.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2007-11-12 18:59:48 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2007-11-12 18:59:48 +0000
commit4c281d3f704bfc4939603a53fd97015107d79fcb (patch)
treea13316a7090ec7f73f0dbf9c2171bc0235c23c64 /src/live_effects/lpe-skeleton.cpp
parentFix bad markups in it.po (Translators: Please check your markups with check-m... (diff)
downloadinkscape-4c281d3f704bfc4939603a53fd97015107d79fcb.tar.gz
inkscape-4c281d3f704bfc4939603a53fd97015107d79fcb.zip
LPE: no longer overload doEffect methods, but name them according to accepted arguments. This saves developer brain time because of 'hiding' issues.
(bzr r4067)
Diffstat (limited to 'src/live_effects/lpe-skeleton.cpp')
-rw-r--r--src/live_effects/lpe-skeleton.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/lpe-skeleton.cpp b/src/live_effects/lpe-skeleton.cpp
index 13356972e..c0fe0adc0 100644
--- a/src/live_effects/lpe-skeleton.cpp
+++ b/src/live_effects/lpe-skeleton.cpp
@@ -56,7 +56,7 @@ LPESkeleton::doEffect (SPCurve * curve)
}
NArtBpath *
-LPESkeleton::doEffect (NArtBpath * path_in)
+LPESkeleton::doEffect_nartbpath (NArtBpath * path_in)
{
NArtBpath *path_out;
unsigned ret = 0;
@@ -72,7 +72,7 @@ LPESkeleton::doEffect (NArtBpath * path_in)
}
std::vector<Geom::Path>
-LPESkeleton::doEffect (std::vector<Geom::Path> & path_in)
+LPESkeleton::doEffect_path (std::vector<Geom::Path> & path_in)
{
std::vector<Geom::Path> path_out;
@@ -83,7 +83,7 @@ LPESkeleton::doEffect (std::vector<Geom::Path> & path_in)
*/
Geom::Piecewise<Geom::D2<Geom::SBasis> >
-LPESkeleton::doEffect (Geom::Piecewise<Geom::D2<Geom::SBasis> > & pwd2_in)
+LPESkeleton::doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > & pwd2_in)
{
Geom::Piecewise<Geom::D2<Geom::SBasis> > output;