diff options
| author | Jasper van de Gronde <jasper.vandegronde@gmail.com> | 2008-03-21 19:53:10 +0000 |
|---|---|---|
| committer | jaspervdg <jaspervdg@users.sourceforge.net> | 2008-03-21 19:53:10 +0000 |
| commit | 40a243a7a5e67d4f09a82bfbee5babe40ec924b7 (patch) | |
| tree | 5f43830b59a1c448f880a39cd2d23b8cc1058d97 /src/sp-shape.cpp | |
| parent | Start working toward multiple inheritance (diff) | |
| download | inkscape-40a243a7a5e67d4f09a82bfbee5babe40ec924b7.tar.gz inkscape-40a243a7a5e67d4f09a82bfbee5babe40ec924b7.zip | |
No more NRMatrix or NRPoint.
(bzr r5149)
Diffstat (limited to 'src/sp-shape.cpp')
| -rw-r--r-- | src/sp-shape.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-shape.cpp b/src/sp-shape.cpp index e990fdf8e..12929e89c 100644 --- a/src/sp-shape.cpp +++ b/src/sp-shape.cpp @@ -799,13 +799,13 @@ sp_shape_print (SPItem *item, SPPrintContext *ctx) if (!style->fill.isNone()) { NRBPath bp; bp.path = SP_CURVE_BPATH(shape->curve); - sp_print_fill (ctx, &bp, i2d, style, &pbox, &dbox, &bbox); + sp_print_fill (ctx, &bp, &i2d, style, &pbox, &dbox, &bbox); } if (!style->stroke.isNone()) { NRBPath bp; bp.path = SP_CURVE_BPATH(shape->curve); - sp_print_stroke (ctx, &bp, i2d, style, &pbox, &dbox, &bbox); + sp_print_stroke (ctx, &bp, &i2d, style, &pbox, &dbox, &bbox); } for (NArtBpath* bp = SP_CURVE_BPATH(shape->curve); bp->code != NR_END; bp++) { |
