summaryrefslogtreecommitdiffstats
path: root/src/ui/interface.cpp
diff options
context:
space:
mode:
authorAdrian Boguszewski <adrbogus1@student.pg.gda.pl>2016-07-27 10:19:03 +0000
committerAdrian Boguszewski <adrbogus1@student.pg.gda.pl>2016-07-27 10:19:03 +0000
commitff4fbbc93f67afd6cbf851691833a50d6c76b350 (patch)
tree3bea98560af71f702f0274faf35754e28e042a2d /src/ui/interface.cpp
parentChanged coding style (diff)
downloadinkscape-ff4fbbc93f67afd6cbf851691833a50d6c76b350.tar.gz
inkscape-ff4fbbc93f67afd6cbf851691833a50d6c76b350.zip
Renamed some functions, fixed tests
(bzr r14954.1.28)
Diffstat (limited to '')
-rw-r--r--src/ui/interface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/interface.cpp b/src/ui/interface.cpp
index d19526105..eb3034ca3 100644
--- a/src/ui/interface.cpp
+++ b/src/ui/interface.cpp
@@ -1250,7 +1250,7 @@ sp_ui_drag_data_received(GtkWidget *widget,
Geom::OptRect sel_bbox = selection->visualBounds();
if (sel_bbox) {
Geom::Point m( desktop->point() - sel_bbox->midpoint() );
- sp_selection_move_relative(selection, m, false);
+ sp_object_set_move_relative(selection, m, false);
}
}
@@ -1916,7 +1916,7 @@ void ContextMenu::MakeGroupMenu(void)
void ContextMenu::ActivateGroup(void)
{
- sp_selection_group_ui(_desktop->selection, _desktop);
+ sp_selection_group(_desktop->selection, _desktop);
}
void ContextMenu::ActivateUngroup(void)