X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Flineparalleloptions.cpp;h=39637ec16ca05cbbf7bfacd201d31ade916b5d5e;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=c09af48d84cfbb3f0daa4921ad5a2ed08bc0d28c;hpb=865303923fcb231a171992b75a73364ff469ff8c;p=architektonas diff --git a/src/forms/lineparalleloptions.cpp b/src/forms/lineparalleloptions.cpp index c09af48..39637ec 100644 --- a/src/forms/lineparalleloptions.cpp +++ b/src/forms/lineparalleloptions.cpp @@ -17,6 +17,7 @@ #include "lineparalleloptions.h" #include "actiondrawlineparallel.h" +#include "debug.h" #include "settings.h" LineParallelOptions::LineParallelOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/): @@ -80,7 +81,7 @@ void LineParallelOptions::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; } } @@ -88,7 +89,7 @@ void LineParallelOptions::setAction(ActionInterface * a, bool update) void LineParallelOptions::updateDist(const QString & d) { if (action != NULL) - action->setDistance(RS_Math::eval(d)); + action->setDistance(Math::eval(d)); } void LineParallelOptions::updateNumber(int n)