summaryrefslogtreecommitdiffstats
path: root/src/ui
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2016-05-15 09:48:51 +0000
committerjabiertxof <info@marker.es>2016-05-15 09:48:51 +0000
commit159439c26042b7c69aa9c33ce9484e4dfd00372a (patch)
tree30d1a626d609369d1220db7f0d05cbb2a7fda970 /src/ui
parentupdate to trunk (diff)
downloadinkscape-159439c26042b7c69aa9c33ce9484e4dfd00372a.tar.gz
inkscape-159439c26042b7c69aa9c33ce9484e4dfd00372a.zip
Fixing pointwise
(bzr r13645.1.137)
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/tool/multi-path-manipulator.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ui/tool/multi-path-manipulator.cpp b/src/ui/tool/multi-path-manipulator.cpp
index 857f954ce..9ec6f733f 100644
--- a/src/ui/tool/multi-path-manipulator.cpp
+++ b/src/ui/tool/multi-path-manipulator.cpp
@@ -330,13 +330,13 @@ void MultiPathManipulator::insertNodes()
{
if (_selection.empty()) return;
invokeForAll(&PathManipulator::insertNodes);
- _done(_("Add nodes"), true);
+ _done(_("Add nodes"));
}
void MultiPathManipulator::insertNodesAtExtrema(ExtremumType extremum)
{
if (_selection.empty()) return;
invokeForAll(&PathManipulator::insertNodeAtExtremum, extremum);
- _done(_("Add extremum nodes"), true);
+ _done(_("Add extremum nodes"));
}
void MultiPathManipulator::insertNode(Geom::Point pt)
@@ -351,7 +351,7 @@ void MultiPathManipulator::duplicateNodes()
{
if (_selection.empty()) return;
invokeForAll(&PathManipulator::duplicateNodes);
- _done(_("Duplicate nodes"), true);
+ _done(_("Duplicate nodes"));
}
void MultiPathManipulator::joinNodes()
@@ -491,10 +491,10 @@ void MultiPathManipulator::reverseSubpaths()
{
if (_selection.empty()) {
invokeForAll(&PathManipulator::reverseSubpaths, false);
- _done("Reverse subpaths", true);
+ _done("Reverse subpaths");
} else {
invokeForAll(&PathManipulator::reverseSubpaths, true);
- _done("Reverse selected subpaths", true);
+ _done("Reverse selected subpaths");
}
}