diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2016-11-09 21:03:39 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2016-11-09 21:03:39 +0000 |
| commit | afe611e02639684bc57a4bda796dbd6305ab38a9 (patch) | |
| tree | ed672d400bfabb4d49d9608b16635f6e77aa414d /src/verbs.cpp | |
| parent | Click-drag selects nodes rather than creates new mesh if mesh already exists. (diff) | |
| parent | Move boolop functions from sp_selected_path_<op> to ObjectSet::path<op> (diff) | |
| download | inkscape-afe611e02639684bc57a4bda796dbd6305ab38a9.tar.gz inkscape-afe611e02639684bc57a4bda796dbd6305ab38a9.zip | |
merge boolop branch: Move boolop functions from sp_selected_path_<op> to ObjectSet::path<op>
(bzr r15232)
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 12 |
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: { |
