summaryrefslogtreecommitdiffstats
path: root/src/draw-context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/draw-context.cpp')
-rw-r--r--src/draw-context.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/draw-context.cpp b/src/draw-context.cpp
index 97fcb7be6..6f5d3e4e6 100644
--- a/src/draw-context.cpp
+++ b/src/draw-context.cpp
@@ -440,9 +440,9 @@ spdc_attach_selection(SPDrawContext *dc, Inkscape::Selection */*sel*/)
g_return_if_fail( c->get_segment_count() > 0 );
if ( !c->is_closed() ) {
SPDrawAnchor *a;
- a = sp_draw_anchor_new(dc, c, TRUE, c->first_point());
+ a = sp_draw_anchor_new(dc, c, TRUE, *(c->first_point()));
dc->white_anchors = g_slist_prepend(dc->white_anchors, a);
- a = sp_draw_anchor_new(dc, c, FALSE, c->last_point());
+ a = sp_draw_anchor_new(dc, c, FALSE, *(c->last_point()));
dc->white_anchors = g_slist_prepend(dc->white_anchors, a);
}
}