summaryrefslogtreecommitdiffstats
path: root/src/live_effects/effect.h
diff options
context:
space:
mode:
authorBryce Harrington <bryce@bryceharrington.org>2007-12-30 23:40:41 +0000
committerbryce <bryce@users.sourceforge.net>2007-12-30 23:40:41 +0000
commit839e7e7279023ab60c9beaaf3f1d73cc4217e5b0 (patch)
treef67cd36fa8de65f5c0f3d428991f32a1d5d40f49 /src/live_effects/effect.h
parentcomment fix (diff)
downloadinkscape-839e7e7279023ab60c9beaaf3f1d73cc4217e5b0.tar.gz
inkscape-839e7e7279023ab60c9beaaf3f1d73cc4217e5b0.zip
Set teeth selector in lpe-gears to an integer value >= 3.
Fix trailing whitespace. (bzr r4342)
Diffstat (limited to 'src/live_effects/effect.h')
-rw-r--r--src/live_effects/effect.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/live_effects/effect.h b/src/live_effects/effect.h
index 98cb746c5..964bcd12b 100644
--- a/src/live_effects/effect.h
+++ b/src/live_effects/effect.h
@@ -90,16 +90,16 @@ public:
protected:
Effect(LivePathEffectObject *lpeobject);
- // provide a set of doEffect functions so the developer has a choice
+ // provide a set of doEffect functions so the developer has a choice
// of what kind of input/output parameters he desires.
- // the order in which they appear is the order in which they are
+ // the order in which they appear is the order in which they are
// called by this base class. (i.e. doEffect(SPCurve * curve) defaults to calling
// doEffect(std::vector<Geom::Path> )
virtual NArtBpath *
doEffect_nartbpath (NArtBpath * path_in);
- virtual std::vector<Geom::Path>
+ virtual std::vector<Geom::Path>
doEffect_path (std::vector<Geom::Path> & path_in);
- virtual Geom::Piecewise<Geom::D2<Geom::SBasis> >
+ virtual Geom::Piecewise<Geom::D2<Geom::SBasis> >
doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > & pwd2_in);
void registerParameter(Parameter * param);
@@ -109,7 +109,7 @@ protected:
int oncanvasedit_it;
- Inkscape::UI::Widget::Registry wr;
+ Inkscape::UI::Widget::Registry wr;
Gtk::VBox * vbox;
Gtk::Tooltips * tooltips;