]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/imageoptions.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / forms / imageoptions.cpp
index 38033490d528981662ce7111ce3a7a04092fd825..be6c6613d7d32077bbbd8bb78261ebbc434203df 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "imageoptions.h"
 
-#include "rs.h"
+#include "enums.h"
 #include "actiondrawimage.h"
 #include "actioninterface.h"
 #include "debug.h"
@@ -47,7 +47,7 @@ void ImageOptions::setAction(ActionInterface * a, bool update)
 
                if (update)
                {
-                       sAngle = QString("%1").arg(RS_Math::rad2deg(action->getAngle()));
+                       sAngle = QString("%1").arg(Math::rad2deg(action->getAngle()));
                        sFactor = QString("%1").arg(action->getFactor());
                }
                else
@@ -64,7 +64,7 @@ void ImageOptions::setAction(ActionInterface * a, bool update)
        }
        else
        {
-               RS_DEBUG->print(RS_Debug::D_ERROR, "ImageOptions::setAction: wrong action type");
+               DEBUG->print(Debug::D_ERROR, "ImageOptions::setAction: wrong action type");
                action = NULL;
        }
 }
@@ -73,7 +73,7 @@ void ImageOptions::updateData()
 {
        if (action != NULL)
        {
-               action->setAngle(RS_Math::deg2rad(RS_Math::eval(ui.leAngle->text())));
-               action->setFactor(RS_Math::eval(ui.leFactor->text()));
+               action->setAngle(Math::deg2rad(Math::eval(ui.leAngle->text())));
+               action->setFactor(Math::eval(ui.leFactor->text()));
        }
 }