summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-vonkoch.cpp
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2009-12-08 02:21:08 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2009-12-08 02:21:08 +0000
commite2b9f78d271e5fea988138d49020e704e72c83b1 (patch)
treed5c1c53cefce4a2f126718cdf2d95707309446e5 /src/live_effects/lpe-vonkoch.cpp
parentFix mask editing behavior on undo and outline display for masks/clips; (diff)
downloadinkscape-e2b9f78d271e5fea988138d49020e704e72c83b1.tar.gz
inkscape-e2b9f78d271e5fea988138d49020e704e72c83b1.zip
Fix LPEs and break mask transform undo
(bzr r8846.2.3)
Diffstat (limited to 'src/live_effects/lpe-vonkoch.cpp')
-rw-r--r--src/live_effects/lpe-vonkoch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/lpe-vonkoch.cpp b/src/live_effects/lpe-vonkoch.cpp
index 7fd0ac0b4..b2a5d56fa 100644
--- a/src/live_effects/lpe-vonkoch.cpp
+++ b/src/live_effects/lpe-vonkoch.cpp
@@ -19,7 +19,7 @@ void
VonKochPathParam::param_setup_nodepath(Inkscape::NodePath::Path *np)
{
PathParam::param_setup_nodepath(np);
- sp_nodepath_make_straight_path(np);
+ //sp_nodepath_make_straight_path(np);
}
//FIXME: a path is used here instead of 2 points to work around path/point param incompatibility bug.
@@ -27,12 +27,12 @@ void
VonKochRefPathParam::param_setup_nodepath(Inkscape::NodePath::Path *np)
{
PathParam::param_setup_nodepath(np);
- sp_nodepath_make_straight_path(np);
+ //sp_nodepath_make_straight_path(np);
}
bool
VonKochRefPathParam::param_readSVGValue(const gchar * strvalue)
{
- std::vector<Geom::Path> old = _pathvector;
+ Geom::PathVector old = _pathvector;
bool res = PathParam::param_readSVGValue(strvalue);
if (res && _pathvector.size()==1 && _pathvector.front().size()==1){
return true;