X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Froundoptions.cpp;h=1084835ba7961d3e0f4eec16158d6a5ef5a75542;hb=5adb444f3e523d3fd028617ced72d1ea6661db21;hp=9fce0ee31078f8b7f8328f74d139279173c610f4;hpb=48105dec9198cf5a81dd9286010d0d45e28f70c3;p=architektonas diff --git a/src/forms/roundoptions.cpp b/src/forms/roundoptions.cpp index 9fce0ee..1084835 100644 --- a/src/forms/roundoptions.cpp +++ b/src/forms/roundoptions.cpp @@ -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())); } }