X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Fbeveloptions.cpp;h=d022a8b4fc732acfafec103a60cc397a6cda5157;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=bbfbd71994d344d2016a79df4b5b5c8c9f2beac6;hpb=48105dec9198cf5a81dd9286010d0d45e28f70c3;p=architektonas diff --git a/src/forms/beveloptions.cpp b/src/forms/beveloptions.cpp index bbfbd71..d022a8b 100644 --- a/src/forms/beveloptions.cpp +++ b/src/forms/beveloptions.cpp @@ -16,10 +16,10 @@ #include "beveloptions.h" -#include "rs.h" +#include "enums.h" #include "actioninterface.h" #include "actionmodifybevel.h" -#include "rs_debug.h" +#include "debug.h" #include "settings.h" BevelOptions::BevelOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/): @@ -96,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; } } @@ -106,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())); } }