summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-04-09 19:34:51 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-04-09 19:34:51 +0000
commitdbff287750e69fde0a98e67c297531113ed74d13 (patch)
tree83f9cd704c1125ab6e86ee7a75a799296016b2d9 /src
parentCoding style fixes (diff)
downloadinkscape-dbff287750e69fde0a98e67c297531113ed74d13.tar.gz
inkscape-dbff287750e69fde0a98e67c297531113ed74d13.zip
fix a bug in refactor
(bzr r13973.1.14)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-simplify.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/lpe-simplify.cpp b/src/live_effects/lpe-simplify.cpp
index d2ced47ae..7fc20ede1 100644
--- a/src/live_effects/lpe-simplify.cpp
+++ b/src/live_effects/lpe-simplify.cpp
@@ -188,7 +188,7 @@ LPESimplify::generateHelperPathAndSmooth(Geom::PathVector &result)
}
}
if(helper_size > 0) {
- draw_node(curve_it1->initialPoint());
+ drawNode(curve_it1->initialPoint());
}
nCurve->moveto(curve_it1->initialPoint());
Geom::Point start = Geom::Point(0,0);
@@ -242,7 +242,7 @@ LPESimplify::generateHelperPathAndSmooth(Geom::PathVector &result)
}
}
if(helper_size > 0) {
- draw_node(curve_it1->finalPoint());
+ drawNode(curve_it1->finalPoint());
}
++curve_it1;
++curve_it2;
@@ -258,7 +258,7 @@ LPESimplify::generateHelperPathAndSmooth(Geom::PathVector &result)
}
void
-LPESimplify::draw_node(Geom::Point p)
+LPESimplify::drawNode(Geom::Point p)
{
double r = radius_helper_nodes;
char const * svgd;