From 9c33efba40912d582a4844e4e82a72c13c8c4887 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Wed, 13 Aug 2008 19:06:18 +0000 Subject: make spcurve::first_point and last_point boost::optional (bzr r6617) --- src/draw-context.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/draw-context.cpp') 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); } } -- cgit v1.2.3