summaryrefslogtreecommitdiffstats
path: root/src/live_effects
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-06-26 23:16:23 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-06-26 23:16:23 +0000
commit9146446e0b01911dc3f96e98f115af0b1e51517d (patch)
tree81300c70434eec7b94061a5ebb82e89925e46395 /src/live_effects
parentuse 2geom path for bbox calculation. (gets rid of yet another reference to ol... (diff)
downloadinkscape-9146446e0b01911dc3f96e98f115af0b1e51517d.tar.gz
inkscape-9146446e0b01911dc3f96e98f115af0b1e51517d.zip
noop: be more consistent with function names (get_pathvector => set_pathvector)
(bzr r6078)
Diffstat (limited to 'src/live_effects')
-rw-r--r--src/live_effects/effect.cpp2
-rw-r--r--src/live_effects/lpe-spiro.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp
index 9326f54b9..9ee4105bc 100644
--- a/src/live_effects/effect.cpp
+++ b/src/live_effects/effect.cpp
@@ -304,7 +304,7 @@ Effect::doEffect (SPCurve * curve)
std::vector<Geom::Path> result_pathv = doEffect_path(orig_pathv);
- curve->set_pathv(result_pathv);
+ curve->set_pathvector(result_pathv);
}
std::vector<Geom::Path>
diff --git a/src/live_effects/lpe-spiro.cpp b/src/live_effects/lpe-spiro.cpp
index 0ffe6a7f4..30c7b162c 100644
--- a/src/live_effects/lpe-spiro.cpp
+++ b/src/live_effects/lpe-spiro.cpp
@@ -211,7 +211,7 @@ LPESpiro::doEffect(SPCurve * curve)
g_warning("Exception during LPE Spiro execution. \n %s", e.what());
SP_ACTIVE_DESKTOP->messageStack()->flash( Inkscape::WARNING_MESSAGE,
_("An exception occurred during execution of the Spiro Path Effect.") );
- curve->set_pathv(original_pathv);
+ curve->set_pathvector(original_pathv);
}
}