X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Froundoptions.cpp;h=1084835ba7961d3e0f4eec16158d6a5ef5a75542;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=6b4fdc0d51b81d20cefb8b92c1dd7b27aba77d44;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/forms/roundoptions.cpp b/src/forms/roundoptions.cpp index 6b4fdc0..1084835 100644 --- a/src/forms/roundoptions.cpp +++ b/src/forms/roundoptions.cpp @@ -83,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; } } @@ -93,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())); } }