]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/roundoptions.cpp
Bugfixes related to removing Snapper class.
[architektonas] / src / forms / roundoptions.cpp
index 115a69b7b446b21b335d45d0b3c3c23b62600ee0..1084835ba7961d3e0f4eec16158d6a5ef5a75542 100644 (file)
@@ -17,6 +17,7 @@
 #include "roundoptions.h"
 
 #include "actionmodifyround.h"
+#include "debug.h"
 #include "settings.h"
 
 RoundOptions::RoundOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
@@ -82,7 +83,7 @@ void RoundOptions::setAction(ActionInterface * a, bool update)
        }
        else
        {
-               RS_DEBUG->print(RS_Debug::D_ERROR, "LineParallelOptions::setAction: wrong action type");
+               DEBUG->print(Debug::D_ERROR, "LineParallelOptions::setAction: wrong action type");
                action = NULL;
        }
 }
@@ -92,7 +93,7 @@ void RoundOptions::updateData()
        if (action != NULL)
        {
                action->setTrim(cbTrim->isChecked());
-               action->setRadius(RS_Math::eval(leRadius->text()));
+               action->setRadius(Math::eval(leRadius->text()));
        }
 }