summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorAdrian Boguszewski <adrbogus1@student.pg.gda.pl>2016-07-20 09:01:17 +0000
committerAdrian Boguszewski <adrbogus1@student.pg.gda.pl>2016-07-20 09:01:17 +0000
commit3c593bb8da3357514ff5b4f3154d08c4508ad47e (patch)
treeb6f8b8a12882dee4979d42630af44aa90c046f3d /src/verbs.cpp
parentRenamed children list in SPObject (diff)
downloadinkscape-3c593bb8da3357514ff5b4f3154d08c4508ad47e.tar.gz
inkscape-3c593bb8da3357514ff5b4f3154d08c4508ad47e.zip
Changed arguments and names of selection chemistry functions
(bzr r14954.1.22)
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 299cfe8e7..8255ea1ea 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -1133,22 +1133,22 @@ void SelectionVerb::perform(SPAction *action, void *data)
sp_selected_path_slice(selection, dt);
break;
case SP_VERB_SELECTION_TO_FRONT:
- sp_selection_raise_to_top(selection, dt);
+ sp_selection_raise_to_top_ui(selection, dt);
break;
case SP_VERB_SELECTION_TO_BACK:
- sp_selection_lower_to_bottom(selection, dt);
+ sp_selection_lower_to_bottom_ui(selection, dt);
break;
case SP_VERB_SELECTION_RAISE:
- sp_selection_raise(selection, dt);
+ sp_selection_raise_ui(selection, dt);
break;
case SP_VERB_SELECTION_LOWER:
- sp_selection_lower(selection, dt);
+ sp_selection_lower_ui(selection, dt);
break;
case SP_VERB_SELECTION_GROUP:
- sp_selection_group(selection, dt);
+ sp_selection_group_ui(selection, dt);
break;
case SP_VERB_SELECTION_UNGROUP:
- sp_selection_ungroup(selection, dt);
+ sp_selection_ungroup_ui(selection, dt);
break;
case SP_VERB_SELECTION_UNGROUP_POP_SELECTION:
sp_selection_ungroup_pop_selection(selection, dt);