summaryrefslogtreecommitdiffstats
path: root/src/ui/tool/selectable-control-point.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/tool/selectable-control-point.cpp')
-rw-r--r--src/ui/tool/selectable-control-point.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tool/selectable-control-point.cpp b/src/ui/tool/selectable-control-point.cpp
index 1835f0008..76028dd82 100644
--- a/src/ui/tool/selectable-control-point.cpp
+++ b/src/ui/tool/selectable-control-point.cpp
@@ -59,13 +59,13 @@ bool SelectableControlPoint::grabbed(GdkEventMotion *)
if (!selected()) {
_takeSelection();
}
- _selection._pointGrabbed();
+ _selection._pointGrabbed(this);
return false;
}
void SelectableControlPoint::dragged(Geom::Point &new_pos, GdkEventMotion *event)
{
- _selection._pointDragged(position(), new_pos, event);
+ _selection._pointDragged(new_pos, event);
}
void SelectableControlPoint::ungrabbed(GdkEventButton *)