X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Fdimlinearoptions.cpp;h=08f30f5f426486a5968c3dd55b39236cf0dc9c9d;hb=48105dec9198cf5a81dd9286010d0d45e28f70c3;hp=b221d11956be5ad7ef4826de2654d9296e02dddf;hpb=0e80da8b560e09124c527f3544859e0c31157ce4;p=architektonas diff --git a/src/forms/dimlinearoptions.cpp b/src/forms/dimlinearoptions.cpp index b221d11..08f30f5 100644 --- a/src/forms/dimlinearoptions.cpp +++ b/src/forms/dimlinearoptions.cpp @@ -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 // @@ -14,8 +16,9 @@ #include "dimlinearoptions.h" -#include "rs_actiondimlinear.h" -#include "rs_actioninterface.h" +#include "actiondimlinear.h" +#include "actioninterface.h" +#include "rs_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;