summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ui/tool/path-manipulator.cpp1
-rw-r--r--src/ui/tool/path-manipulator.h2
-rw-r--r--src/ui/tools/freehand-base.cpp8
3 files changed, 5 insertions, 6 deletions
diff --git a/src/ui/tool/path-manipulator.cpp b/src/ui/tool/path-manipulator.cpp
index 47f736fcb..e70717728 100644
--- a/src/ui/tool/path-manipulator.cpp
+++ b/src/ui/tool/path-manipulator.cpp
@@ -42,7 +42,6 @@
#include "ui/tool/multi-path-manipulator.h"
#include "xml/node.h"
#include "xml/node-observer.h"
-#include "sp-lpe-item.h"
#include "live_effects/lpe-bspline.h"
namespace Inkscape {
diff --git a/src/ui/tool/path-manipulator.h b/src/ui/tool/path-manipulator.h
index 31cc0d1fd..5f075834e 100644
--- a/src/ui/tool/path-manipulator.h
+++ b/src/ui/tool/path-manipulator.h
@@ -94,7 +94,7 @@ public:
NodeList::iterator subdivideSegment(NodeList::iterator after, double t);
NodeList::iterator extremeNode(NodeList::iterator origin, bool search_selected,
- bool search_unselected, bool closest);
+ bool search_unselected, bool closest);
bool isBSpline;
int BSplineGetSteps();
diff --git a/src/ui/tools/freehand-base.cpp b/src/ui/tools/freehand-base.cpp
index b6efaebd9..5825a149c 100644
--- a/src/ui/tools/freehand-base.cpp
+++ b/src/ui/tools/freehand-base.cpp
@@ -247,7 +247,7 @@ static void spdc_check_for_and_apply_waiting_LPE(FreehandBase *dc, SPItem *item,
if (prefs->getInt(tool_name(dc) + "/freehand-mode", 0) == 1) {
Effect::createAndApply(SPIRO, dc->desktop->doc(), item);
}
- //Añadimos el modo BSpline a los efectos en espera
+ //spanish: añadimos el modo bspline a los efectos en espera
if (prefs->getInt(tool_name(dc) + "/freehand-mode", 0) == 2) {
Effect::createAndApply(BSPLINE, dc->desktop->doc(), item);
}
@@ -517,7 +517,7 @@ void spdc_concat_colors_and_flush(FreehandBase *dc, gboolean forceclosed)
dc->sa->curve->append_continuous(c, 0.0625);
c->unref();
dc->sa->curve->closepath_current();
- //Si la curva tiene un LPE del tipo BSpline ejecutamos spdc_flush_white
+ //spanish: Si la curva tiene un LPE del tipo bspline o spiro ejecutamos spdc_flush_white
//pasándole la curva de inicio necesaria
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
if(prefs->getInt(tool_name(dc) + "/freehand-mode", 0) == 1 ||
@@ -652,8 +652,8 @@ SPDrawAnchor *spdc_test_inside(FreehandBase *dc, Geom::Point p)
}
}
- //Modificamos la curva del "anchor" final para que sea igual que la curva de inicio.
- //Esta curva fue modificada al continuar la curva y necesitamos que sea igual que la curva en
+ //spanish: modificamos la curva de anclaje para que sea igual que la curva de inicio.
+ //esta curva fue modificada al continuar la curva y necesitamos que sea igual que la curva en
//la que cerramos el trazado.
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
if((prefs->getInt(tool_name(dc) + "/freehand-mode", 0) == 1 ||