]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/snapdistoptions.cpp
Initial phase of adding polyline functionality. DOES NOT COMPILE.
[architektonas] / src / forms / snapdistoptions.cpp
index 056b365cce3f7e3fcff5c79bd83ade6e9e9fa7ac..d4885d21185491f45827e0d46b771cdca002e6ec 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>
 //
 
 #include "snapdistoptions.h"
 
-//#include "actionmodifytrimamount.h"
-//#include "actioninterface.h"
-//#include "rs_debug.h"
-#include "rs_math.h"
+#include "mathextra.h"
 #include "settings.h"
 
 SnapDistOptions::SnapDistOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
@@ -61,7 +60,6 @@ void SnapDistOptions::setDist(double * d)
 
 void SnapDistOptions::updateDist(const QString & d)
 {
-       if (dist != NULL)
-               *dist = RS_Math::eval(d, 1.0);
+       if (dist)
+               *dist = Math::eval(d, 1.0);
 }
-