]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/libraryinsertoptions.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / forms / libraryinsertoptions.cpp
index b0725a9e54736c4f30b8d3d66c42e3817ea359b9..febdf230e6b1afd950a08af80642082cdaee296d 100644 (file)
@@ -65,7 +65,7 @@ void LibraryInsertOptions::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
@@ -81,7 +81,7 @@ void LibraryInsertOptions::setAction(ActionInterface * a, bool update)
        }
        else
        {
-               RS_DEBUG->print(RS_Debug::D_ERROR, "LibraryInsertOptions::setAction: wrong action type");
+               DEBUG->print(Debug::D_ERROR, "LibraryInsertOptions::setAction: wrong action type");
                action = NULL;
        }
 }
@@ -90,8 +90,8 @@ void LibraryInsertOptions::updateData()
 {
        if (action != NULL)
        {
-               action->setAngle(RS_Math::deg2rad(RS_Math::eval(leAngle->text())));
-               action->setFactor(RS_Math::eval(leFactor->text()));
+               action->setAngle(Math::deg2rad(Math::eval(leAngle->text())));
+               action->setFactor(Math::eval(leFactor->text()));
        }
 }