summaryrefslogtreecommitdiffstats
path: root/src/extension/print.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-07-12 15:21:12 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-07-12 15:21:12 +0000
commite93821409140f74f3c27b3f8a42bda8b16dd4dfe (patch)
tree22b89b397781a11e95c256008b6a0bc03315ba02 /src/extension/print.cpp
parentenable writing "H/h" and "V/v" to SVG ! (diff)
downloadinkscape-e93821409140f74f3c27b3f8a42bda8b16dd4dfe.tar.gz
inkscape-e93821409140f74f3c27b3f8a42bda8b16dd4dfe.zip
2geomify print, fill and stroke methods of extensions
(bzr r6274)
Diffstat (limited to 'src/extension/print.cpp')
-rw-r--r--src/extension/print.cpp8
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