X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Fbeveloptions.cpp;h=d022a8b4fc732acfafec103a60cc397a6cda5157;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=a99f7f20b1a95541bb684f954313bb5075b0023a;hpb=865303923fcb231a171992b75a73364ff469ff8c;p=architektonas diff --git a/src/forms/beveloptions.cpp b/src/forms/beveloptions.cpp index a99f7f2..d022a8b 100644 --- a/src/forms/beveloptions.cpp +++ b/src/forms/beveloptions.cpp @@ -16,9 +16,10 @@ #include "beveloptions.h" -#include "rs.h" +#include "enums.h" #include "actioninterface.h" #include "actionmodifybevel.h" +#include "debug.h" #include "settings.h" BevelOptions::BevelOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/): @@ -95,7 +96,7 @@ void BevelOptions::setAction(ActionInterface * a, bool update) } else { - RS_DEBUG->print(RS_Debug::D_ERROR, "BevelOptions::setAction: wrong action type"); + DEBUG->print(Debug::D_ERROR, "BevelOptions::setAction: wrong action type"); action = NULL; } } @@ -105,7 +106,7 @@ void BevelOptions::updateData() if (action != NULL) { action->setTrim(cbTrim->isChecked()); - action->setLength1(RS_Math::eval(leLength1->text())); - action->setLength2(RS_Math::eval(leLength2->text())); + action->setLength1(Math::eval(leLength1->text())); + action->setLength2(Math::eval(leLength2->text())); } }