Code

Tweak of member to Geom class
authorishmal <ishmal@users.sourceforge.net>
Fri, 19 Sep 2008 18:40:31 +0000 (18:40 +0000)
committerishmal <ishmal@users.sourceforge.net>
Fri, 19 Sep 2008 18:40:31 +0000 (18:40 +0000)
src/display/canvas-text.cpp
src/display/canvas-text.h

index a74f2f15027263c15cb6010458367d144e1db607..21e1fbd48ad60c365f01a13af28e6dfcdc4f0b29 100644 (file)
@@ -141,7 +141,7 @@ sp_canvastext_update (SPCanvasItem *item, Geom::Matrix const &affine, unsigned i
 
     cl->affine = affine;
 
-    NR::Point s = cl->s * affine;
+    Geom::Point s = cl->s * affine;
 
     // set up a temporary cairo_t to measure the text extents; it would be better to compute this in the render()
     // method but update() seems to be called before so we don't have the information available when we need it
index 54ec8c413ca2b8d295bee71e0997fbc50089fcaa..bb732ae6f51778577785f7d3c46d9cd56fd0f9ec 100644 (file)
@@ -27,8 +27,8 @@ struct SPCanvasText : public SPCanvasItem{
     guint32 rgba;
 
     gchar* text;
-    NR::Point s;
-    NR::Matrix affine;
+    Geom::Point s;
+    Geom::Matrix affine;
     double fontsize;
     double anchor_x;
     double anchor_y;