diff options
Diffstat (limited to 'src/extension/print.cpp')
| -rw-r--r-- | src/extension/print.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/extension/print.cpp b/src/extension/print.cpp index eded694a5..035865825 100644 --- a/src/extension/print.cpp +++ b/src/extension/print.cpp @@ -79,17 +79,17 @@ Print::comment (const char * comment) } unsigned int -Print::fill (const const_NRBPath *bpath, const NR::Matrix *ctm, const SPStyle *style, +Print::fill (Geom::PathVector const &pathv, const NR::Matrix *ctm, const SPStyle *style, const NRRect *pbox, const NRRect *dbox, const NRRect *bbox) { - return imp->fill (this, bpath, ctm, style, pbox, dbox, bbox); + return imp->fill (this, pathv, ctm, style, pbox, dbox, bbox); } unsigned int -Print::stroke (const const_NRBPath *bpath, const NR::Matrix *transform, const SPStyle *style, +Print::stroke (Geom::PathVector const &pathv, const NR::Matrix *transform, const SPStyle *style, const NRRect *pbox, const NRRect *dbox, const NRRect *bbox) { - return imp->stroke (this, bpath, transform, style, pbox, dbox, bbox); + return imp->stroke (this, pathv, transform, style, pbox, dbox, bbox); } unsigned int |
