Code

Making BUILT_SOURCES an append
[inkscape.git] / src / extension / print.cpp
index 6aed4da25737228c93a38f6bd4aff063f9182992..2d4177d606376c77bb1e9d1806804c62e5693f8c 100644 (file)
@@ -61,7 +61,7 @@ Print::finish (void)
 }
 
 unsigned int
-Print::bind (const NRMatrix *transform, float opacity)
+Print::bind (const Geom::Matrix *transform, float opacity)
 {
     return imp->bind (this, transform, opacity);
 }
@@ -79,28 +79,28 @@ Print::comment (const char * comment)
 }
 
 unsigned int
-Print::fill (const NRBPath *bpath, const NRMatrix *ctm, const SPStyle *style,
+Print::fill (Geom::PathVector const &pathv, const Geom::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 NRBPath *bpath, const NRMatrix *transform, const SPStyle *style,
+Print::stroke (Geom::PathVector const &pathv, const Geom::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
 Print::image (unsigned char *px, unsigned int w, unsigned int h, unsigned int rs,
-                const NRMatrix *transform, const SPStyle *style)
+                const Geom::Matrix *transform, const SPStyle *style)
 {
     return imp->image (this, px, w, h, rs, transform, style);
 }
 
 unsigned int
-Print::text (const char* text, NR::Point p, const SPStyle* style)
+Print::text (const char* text, Geom::Point p, const SPStyle* style)
 {
     return imp->text (this, text, p, style);
 }