]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/roundoptions.cpp
Bugfixes related to removing Snapper class.
[architektonas] / src / forms / roundoptions.cpp
index 9fce0ee31078f8b7f8328f74d139279173c610f4..1084835ba7961d3e0f4eec16158d6a5ef5a75542 100644 (file)
@@ -17,7 +17,7 @@
 #include "roundoptions.h"
 
 #include "actionmodifyround.h"
-#include "rs_debug.h"
+#include "debug.h"
 #include "settings.h"
 
 RoundOptions::RoundOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
@@ -83,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;
        }
 }
@@ -93,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()));
        }
 }