diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-07-12 15:21:12 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-07-12 15:21:12 +0000 |
| commit | e93821409140f74f3c27b3f8a42bda8b16dd4dfe (patch) | |
| tree | 22b89b397781a11e95c256008b6a0bc03315ba02 /src/print.cpp | |
| parent | enable writing "H/h" and "V/v" to SVG ! (diff) | |
| download | inkscape-e93821409140f74f3c27b3f8a42bda8b16dd4dfe.tar.gz inkscape-e93821409140f74f3c27b3f8a42bda8b16dd4dfe.zip | |
2geomify print, fill and stroke methods of extensions
(bzr r6274)
Diffstat (limited to 'src/print.cpp')
| -rw-r--r-- | src/print.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/print.cpp b/src/print.cpp index b1fc6b3b2..6d4572031 100644 --- a/src/print.cpp +++ b/src/print.cpp @@ -52,17 +52,17 @@ sp_print_comment(SPPrintContext *ctx, char const *comment) } unsigned int -sp_print_fill(SPPrintContext *ctx, const_NRBPath const *bpath, NR::Matrix const *ctm, SPStyle const *style, +sp_print_fill(SPPrintContext *ctx, Geom::PathVector const &pathv, NR::Matrix const *ctm, SPStyle const *style, NRRect const *pbox, NRRect const *dbox, NRRect const *bbox) { - return ctx->module->fill(bpath, ctm, style, pbox, dbox, bbox); + return ctx->module->fill(pathv, ctm, style, pbox, dbox, bbox); } unsigned int -sp_print_stroke(SPPrintContext *ctx, const_NRBPath const *bpath, NR::Matrix const *ctm, SPStyle const *style, +sp_print_stroke(SPPrintContext *ctx, Geom::PathVector const &pathv, NR::Matrix const *ctm, SPStyle const *style, NRRect const *pbox, NRRect const *dbox, NRRect const *bbox) { - return ctx->module->stroke(bpath, ctm, style, pbox, dbox, bbox); + return ctx->module->stroke(pathv, ctm, style, pbox, dbox, bbox); } unsigned int |
