Code

Patch from Diedrik for 296778
[inkscape.git] / src / sp-paint-server.h
index 975ae542f53fbcb654d248f5e5548a646122ad14..998f1556bf9d29f17df364850a2970121d061def 100644 (file)
@@ -49,14 +49,14 @@ struct SPPaintServer : public SPObject {
 struct SPPaintServerClass {
        SPObjectClass sp_object_class;
        /* Get SPPaint instance */
-       SPPainter * (* painter_new) (SPPaintServer *ps, NR::Matrix const &full_transform, NR::Matrix const &parent_transform, const NRRect *bbox);
+       SPPainter * (* painter_new) (SPPaintServer *ps, Geom::Matrix const &full_transform, Geom::Matrix const &parent_transform, const NRRect *bbox);
        /* Free SPPaint instance */
        void (* painter_free) (SPPaintServer *ps, SPPainter *painter);
 };
 
 GType sp_paint_server_get_type (void);
 
-SPPainter *sp_paint_server_painter_new (SPPaintServer *ps, NR::Matrix const &full_transform, NR::Matrix const &parent_transform, const NRRect *bbox);
+SPPainter *sp_paint_server_painter_new (SPPaintServer *ps, Geom::Matrix const &full_transform, Geom::Matrix const &parent_transform, const NRRect *bbox);
 
 SPPainter *sp_painter_free (SPPainter *painter);