]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/arctangentialoptions.cpp
Bugfixes related to removing Snapper class.
[architektonas] / src / forms / arctangentialoptions.cpp
index db203a7a906c2d50a1adecdb4987e2a46cdf2732..99c5fac26b598205f793c2a23d0be3c377e317a5 100644 (file)
@@ -3,7 +3,9 @@
 // Part of the Architektonas Project
 // Originally part of QCad Community Edition by Andrew Mustun
 // Extensively rewritten and refactored by James L. Hammons
-// (C) 2010 Underground Software
+// Portions copyright (C) 2001-2003 RibbonSoft
+// Copyright (C) 2010 Underground Software
+// See the README and GPLv2 files for licensing and warranty information
 //
 // JLH = James L. Hammons <jlhamm@acm.org>
 //
@@ -15,6 +17,7 @@
 #include "arctangentialoptions.h"
 
 #include "actiondrawarctangential.h"
+#include "debug.h"
 #include "settings.h"
 
 ArcTangentialOptions::ArcTangentialOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
@@ -66,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;
        }
@@ -81,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);
    }*/
@@ -89,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));
 }