]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/beveloptions.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / forms / beveloptions.cpp
index 6d987374aa2add9301aed27bb743e9a6386b7e8b..d022a8b4fc732acfafec103a60cc397a6cda5157 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "beveloptions.h"
 
-#include "rs.h"
+#include "enums.h"
 #include "actioninterface.h"
 #include "actionmodifybevel.h"
 #include "debug.h"
@@ -96,7 +96,7 @@ void BevelOptions::setAction(ActionInterface * a, bool update)
        }
        else
        {
-               RS_DEBUG->print(RS_Debug::D_ERROR, "BevelOptions::setAction: wrong action type");
+               DEBUG->print(Debug::D_ERROR, "BevelOptions::setAction: wrong action type");
                action = NULL;
        }
 }
@@ -106,7 +106,7 @@ void BevelOptions::updateData()
        if (action != NULL)
        {
                action->setTrim(cbTrim->isChecked());
-               action->setLength1(RS_Math::eval(leLength1->text()));
-               action->setLength2(RS_Math::eval(leLength2->text()));
+               action->setLength1(Math::eval(leLength1->text()));
+               action->setLength2(Math::eval(leLength2->text()));
        }
 }