summaryrefslogtreecommitdiffstats
path: root/src/verbs.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/verbs.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/verbs.cpp')
-rw-r--r--src/verbs.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index a5426f324..32aee4161 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -1115,22 +1115,22 @@ void SelectionVerb::perform(SPAction *action, void *data)
bool handled = true;
switch (reinterpret_cast<std::size_t>(data)) {
case SP_VERB_SELECTION_UNION:
- sp_selected_path_union(selection, dt);
+ selection->pathUnion();
break;
case SP_VERB_SELECTION_INTERSECT:
- sp_selected_path_intersect(selection, dt);
+ selection->pathIntersect();
break;
case SP_VERB_SELECTION_DIFF:
- sp_selected_path_diff(selection, dt);
+ selection->pathDiff();
break;
case SP_VERB_SELECTION_SYMDIFF:
- sp_selected_path_symdiff(selection, dt);
+ selection->pathSymDiff();
break;
case SP_VERB_SELECTION_CUT:
- sp_selected_path_cut(selection, dt);
+ selection->pathCut();
break;
case SP_VERB_SELECTION_SLICE:
- sp_selected_path_slice(selection, dt);
+ selection->pathSlice();
break;
case SP_VERB_SELECTION_GROW:
{