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