summaryrefslogtreecommitdiffstats
path: root/src/nodepath.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-01-02 18:23:25 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-01-02 18:23:25 +0000
commit319a6309b90ad4674b117bbda0df9f34b3455053 (patch)
tree2e5242884aff5213a4fbb686418ba9976b18dbdf /src/nodepath.cpp
parentmake LPE parameters responsible for transformation (LPE cycles through its pa... (diff)
downloadinkscape-319a6309b90ad4674b117bbda0df9f34b3455053.tar.gz
inkscape-319a6309b90ad4674b117bbda0df9f34b3455053.zip
fix typo notepath => nodepath
(bzr r4369)
Diffstat (limited to 'src/nodepath.cpp')
-rw-r--r--src/nodepath.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nodepath.cpp b/src/nodepath.cpp
index 4c0727d15..38552f7f7 100644
--- a/src/nodepath.cpp
+++ b/src/nodepath.cpp
@@ -222,7 +222,7 @@ Inkscape::NodePath::Path *sp_nodepath_new(SPDesktop *desktop, SPObject *object,
np->repr_nodetypes_key = g_strconcat(np->repr_key, "-nodetypes", NULL);
Inkscape::LivePathEffect::Parameter *lpeparam = LIVEPATHEFFECT(object)->lpe->getParameter(repr_key_in);
if (lpeparam) {
- lpeparam->param_setup_notepath(np);
+ lpeparam->param_setup_nodepath(np);
}
} else {
np->repr_nodetypes_key = g_strdup("sodipodi:nodetypes");
@@ -231,7 +231,7 @@ Inkscape::NodePath::Path *sp_nodepath_new(SPDesktop *desktop, SPObject *object,
LivePathEffectObject *lpeobj = sp_shape_get_livepatheffectobject(SP_SHAPE(np->object));
if (lpeobj && lpeobj->lpe) {
- lpeobj->lpe->setup_notepath(np);
+ lpeobj->lpe->setup_nodepath(np);
}
} else {
np->repr_key = g_strdup("d");