summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/calligraphic-tool.cpp
diff options
context:
space:
mode:
authorAlexander Brock <zaibu@lunar-orbit.de>2016-11-09 00:23:41 +0000
committerAlexander Brock <zaibu@lunar-orbit.de>2016-11-09 00:23:41 +0000
commit07a86951a15301ccb7eb1446cc1e6d3ca7a68f9b (patch)
tree6aa49c38e2bf4ee709737d0b9b019587f8d6bb52 /src/ui/tools/calligraphic-tool.cpp
parentannotate custom builds, and add correct revno into make dist tarballs (diff)
downloadinkscape-07a86951a15301ccb7eb1446cc1e6d3ca7a68f9b.tar.gz
inkscape-07a86951a15301ccb7eb1446cc1e6d3ca7a68f9b.zip
Move boolop functions from sp_selected_path_<op> to ObjectSet::path<op>
(bzr r15223.1.1)
Diffstat (limited to 'src/ui/tools/calligraphic-tool.cpp')
-rw-r--r--src/ui/tools/calligraphic-tool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tools/calligraphic-tool.cpp b/src/ui/tools/calligraphic-tool.cpp
index 9b4dbb1a2..c2b86b538 100644
--- a/src/ui/tools/calligraphic-tool.cpp
+++ b/src/ui/tools/calligraphic-tool.cpp
@@ -921,10 +921,10 @@ void CalligraphicTool::set_to_accumulated(bool unionize, bool subtract) {
if (unionize) {
desktop->getSelection()->add(this->repr);
- sp_selected_path_union_skip_undo(desktop->getSelection());
+ desktop->getSelection()->pathUnion(true);
} else if (subtract) {
desktop->getSelection()->add(this->repr);
- sp_selected_path_diff_skip_undo(desktop->getSelection());
+ desktop->getSelection()->pathDiff(true);
} else {
if (this->keep_selected) {
desktop->getSelection()->set(this->repr);