summaryrefslogtreecommitdiffstats
path: root/src/live_effects/effect.h
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/effect.h
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/effect.h')
-rw-r--r--src/live_effects/effect.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/effect.h b/src/live_effects/effect.h
index 221f94b40..f6732f9b2 100644
--- a/src/live_effects/effect.h
+++ b/src/live_effects/effect.h
@@ -96,11 +96,11 @@ protected:
// called by this base class. (i.e. doEffect(SPCurve * curve) defaults to calling
// doEffect(std::vector<Geom::Path> )
virtual NArtBpath *
- doEffect (NArtBpath * path_in);
+ doEffect_nartbpath (NArtBpath * path_in);
virtual std::vector<Geom::Path>
- doEffect (std::vector<Geom::Path> & path_in);
+ doEffect_path (std::vector<Geom::Path> & path_in);
virtual Geom::Piecewise<Geom::D2<Geom::SBasis> >
- doEffect (Geom::Piecewise<Geom::D2<Geom::SBasis> > & pwd2_in);
+ doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > & pwd2_in);
void registerParameter(Parameter * param);
Parameter * getNextOncanvasEditableParam();