X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Farctangentialoptions.cpp;h=99c5fac26b598205f793c2a23d0be3c377e317a5;hb=5adb444f3e523d3fd028617ced72d1ea6661db21;hp=e35c445427dd9b3a50c7f2715dbf75a0099f4324;hpb=865303923fcb231a171992b75a73364ff469ff8c;p=architektonas diff --git a/src/forms/arctangentialoptions.cpp b/src/forms/arctangentialoptions.cpp index e35c445..99c5fac 100644 --- a/src/forms/arctangentialoptions.cpp +++ b/src/forms/arctangentialoptions.cpp @@ -17,6 +17,7 @@ #include "arctangentialoptions.h" #include "actiondrawarctangential.h" +#include "debug.h" #include "settings.h" ArcTangentialOptions::ArcTangentialOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/): @@ -68,7 +69,7 @@ void ArcTangentialOptions::setAction(ActionInterface * a, bool update) } else { - RS_DEBUG->print(RS_Debug::D_ERROR, + DEBUG->print(Debug::D_ERROR, "ArcTangentialOptions::setAction: wrong action type"); action = NULL; } @@ -83,7 +84,7 @@ void ArcTangentialOptions::setAction(ActionInterface * a, bool update) rbNeg->setChecked(reversed); }*/ -/*void ArcTangentialOptions::setData(RS_ArcData* d) { +/*void ArcTangentialOptions::setData(ArcData* d) { data = d; updateDirection(false); }*/ @@ -91,6 +92,6 @@ void ArcTangentialOptions::setAction(ActionInterface * a, bool update) void ArcTangentialOptions::updateRadius(const QString & s) { if (action != NULL) - action->setRadius(RS_Math::eval(s)); + action->setRadius(Math::eval(s)); }