From: mental Date: Tue, 9 May 2006 04:17:38 +0000 (+0000) Subject: fix confusion of SP_CANVAS_BPATH with SP_CURVE_BPATH X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=002421da9c01bed644d6d01eaf78dbff0c557fe9;p=inkscape.git fix confusion of SP_CANVAS_BPATH with SP_CURVE_BPATH --- diff --git a/src/display/canvas-bpath.cpp b/src/display/canvas-bpath.cpp index a9285f952..17c880017 100644 --- a/src/display/canvas-bpath.cpp +++ b/src/display/canvas-bpath.cpp @@ -140,7 +140,7 @@ sp_canvas_bpath_update (SPCanvasItem *item, NR::Matrix const &affine, unsigned i if ((cbp->fill_rgba & 0xff) || (cbp->stroke_rgba & 0xff)) { Path* thePath=new Path; - thePath->LoadArtBPath(SP_CANVAS_BPATH(cbp->curve), affine, true); + thePath->LoadArtBPath(SP_CURVE_BPATH(cbp->curve), affine, true); thePath->Convert(0.25); if ((cbp->fill_rgba & 0xff) && (cbp->curve->end > 2)) { Shape* theShape=new Shape;