diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-01-02 18:23:25 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-01-02 18:23:25 +0000 |
| commit | 319a6309b90ad4674b117bbda0df9f34b3455053 (patch) | |
| tree | 2e5242884aff5213a4fbb686418ba9976b18dbdf /src/live_effects/parameter | |
| parent | make LPE parameters responsible for transformation (LPE cycles through its pa... (diff) | |
| download | inkscape-319a6309b90ad4674b117bbda0df9f34b3455053.tar.gz inkscape-319a6309b90ad4674b117bbda0df9f34b3455053.zip | |
fix typo notepath => nodepath
(bzr r4369)
Diffstat (limited to 'src/live_effects/parameter')
| -rw-r--r-- | src/live_effects/parameter/parameter.h | 2 | ||||
| -rw-r--r-- | src/live_effects/parameter/path.cpp | 2 | ||||
| -rw-r--r-- | src/live_effects/parameter/path.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/parameter/parameter.h b/src/live_effects/parameter/parameter.h index bd3fe906e..08af7f928 100644 --- a/src/live_effects/parameter/parameter.h +++ b/src/live_effects/parameter/parameter.h @@ -53,7 +53,7 @@ public: virtual Glib::ustring * param_getTooltip() { return ¶m_tooltip; }; virtual void param_editOncanvas(SPItem * /*item*/, SPDesktop * /*dt*/) {}; - virtual void param_setup_notepath(Inkscape::NodePath::Path */*np*/) {}; + virtual void param_setup_nodepath(Inkscape::NodePath::Path */*np*/) {}; virtual void param_transform_multiply(Geom::Matrix const& /*postmul*/, bool /*set*/) {}; diff --git a/src/live_effects/parameter/path.cpp b/src/live_effects/parameter/path.cpp index 53e15c9a5..9bc81d521 100644 --- a/src/live_effects/parameter/path.cpp +++ b/src/live_effects/parameter/path.cpp @@ -142,7 +142,7 @@ PathParam::param_editOncanvas(SPItem * item, SPDesktop * dt) } void -PathParam::param_setup_notepath(Inkscape::NodePath::Path *np) +PathParam::param_setup_nodepath(Inkscape::NodePath::Path *np) { np->show_helperpath = true; np->helperpath_rgba = 0x009000ff; diff --git a/src/live_effects/parameter/path.h b/src/live_effects/parameter/path.h index 696f27a87..a269f3e4f 100644 --- a/src/live_effects/parameter/path.h +++ b/src/live_effects/parameter/path.h @@ -47,7 +47,7 @@ public: void param_set_and_write_new_value (Geom::Piecewise<Geom::D2<Geom::SBasis> > newpath); void param_editOncanvas(SPItem * item, SPDesktop * dt); - void param_setup_notepath(Inkscape::NodePath::Path *np); + void param_setup_nodepath(Inkscape::NodePath::Path *np); virtual void param_transform_multiply(Geom::Matrix const& /*postmul*/, bool /*set*/) {}; |
