]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/dimlinearoptions.cpp
Initial removal of unnecessary rs_ prefixes from files.
[architektonas] / src / forms / dimlinearoptions.cpp
index b221d11956be5ad7ef4826de2654d9296e02dddf..9ec74b66f2a38c0668d1b4070e402cc1b92fa49e 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>
 //
@@ -14,8 +16,9 @@
 
 #include "dimlinearoptions.h"
 
-#include "rs_actiondimlinear.h"
-#include "rs_actioninterface.h"
+#include "actiondimlinear.h"
+#include "actioninterface.h"
+#include "debug.h"
 #include "settings.h"
 
 DimLinearOptions::DimLinearOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
@@ -56,11 +59,11 @@ DimLinearOptions::~DimLinearOptions()
        settings.endGroup();
 }
 
-void DimLinearOptions::setAction(RS_ActionInterface * a, bool update)
+void DimLinearOptions::setAction(ActionInterface * a, bool update)
 {
        if (a != NULL && a->rtti() == RS2::ActionDimLinear)
        {
-               action = (RS_ActionDimLinear *)a;
+               action = (ActionDimLinear *)a;
 
                QString sa;