]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_dimlinear.cpp
Refactoring: Moved RS_GraphicView to GraphicView.
[architektonas] / src / base / rs_dimlinear.cpp
index ad32e7df389a5a19457ce829437453f295c819c3..9797e36549db66e3e679f50b3a4b9589aa786677 100644 (file)
@@ -17,7 +17,7 @@
 #include "rs_constructionline.h"
 #include "rs_text.h"
 #include "rs_solid.h"
-#include "rs_graphic.h"
+#include "drawing.h"
 #include "rs_units.h"
 
 /**
@@ -91,10 +91,11 @@ QString RS_DimLinear::getMeasuredLabel()
        // Definitive dimension line:
        double dist = dimP1.distanceTo(dimP2);
 
-       RS_Graphic* graphic = getGraphic();
+       Drawing * graphic = getGraphic();
 
        QString ret;
-       if (graphic!=NULL)
+
+       if (graphic != NULL)
        {
                ret = RS_Units::formatLinear(dist, graphic->getUnit(),
                        graphic->getLinearFormat(), graphic->getLinearPrecision());
@@ -103,6 +104,8 @@ QString RS_DimLinear::getMeasuredLabel()
        {
                ret = QString("%1").arg(dist);
        }
+//It's properly creating the label...
+//printf("RS_DimLinear::getMeasuredLabel: label=\"%s\"\n", ret.toAscii().data());
 
        return ret;
 }