summaryrefslogtreecommitdiffstats
path: root/src/live_effects
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-02-19 21:06:37 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-02-19 21:06:37 +0000
commitaa9e36cd93c4f71ff8eb0a6fc24d46933fdf7d14 (patch)
tree247a7c67e58057cdd987fb7cdf45ee61456aaf97 /src/live_effects
parentreducing size in pointwise LPE data (diff)
downloadinkscape-aa9e36cd93c4f71ff8eb0a6fc24d46933fdf7d14.tar.gz
inkscape-aa9e36cd93c4f71ff8eb0a6fc24d46933fdf7d14.zip
fixed some bugs
(bzr r13645.1.19)
Diffstat (limited to 'src/live_effects')
-rw-r--r--src/live_effects/lpe-fillet-chamfer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-fillet-chamfer.cpp b/src/live_effects/lpe-fillet-chamfer.cpp
index e9d9a21b1..0ef8b5a0e 100644
--- a/src/live_effects/lpe-fillet-chamfer.cpp
+++ b/src/live_effects/lpe-fillet-chamfer.cpp
@@ -87,7 +87,7 @@ void LPEFilletChamfer::doOnApply(SPLPEItem const *lpeItem)
--curve_end;
int counter = 0;
while (curve_it1 != curve_endit) {
- Satellite satellite(FILLET, true, true, false, false, 0.0, 0.0);
+ Satellite satellite(F, true, true, false, false, 0.0, 0.0);
Geom::NodeType nodetype;
if (counter==0) {
if (path_it->closed()) {
@@ -173,7 +173,7 @@ LPEFilletChamfer::doEffect_path(std::vector<Geom::Path> const &path_in)
double time0 = 0;
while (curve_it1 != curve_endit) {
std::vector<Satellite> satVector;
- Satellite sat(FILLET, true, true, false, false, 0.0, 0.0);
+ Satellite sat(F, true, true, false, false, 0.0, 0.0);
Curve *curve_it2Fixed = (*path_it->begin()).duplicate();
if(!path_it->closed() || curve_it2 != curve_endit){
curve_it2Fixed = (*curve_it2).duplicate();