X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionsetrelativezero.cpp;h=98297a1b37960853c2c5425fdda1c590902fb259;hb=5adb444f3e523d3fd028617ced72d1ea6661db21;hp=b77d5106ac41fadc9d26e7da3bf54b9cadbc58b2;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionsetrelativezero.cpp b/src/actions/actionsetrelativezero.cpp index b77d510..98297a1 100644 --- a/src/actions/actionsetrelativezero.cpp +++ b/src/actions/actionsetrelativezero.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,10 +16,10 @@ #include "actionsetrelativezero.h" -#include "rs_dialogfactory.h" +#include "dialogfactory.h" #include "graphicview.h" -ActionSetRelativeZero::ActionSetRelativeZero(RS_EntityContainer & container, +ActionSetRelativeZero::ActionSetRelativeZero(EntityContainer & container, GraphicView & graphicView): ActionInterface("Set the relative Zero", container, graphicView) { @@ -78,11 +80,11 @@ void ActionSetRelativeZero::updateMouseButtonHints() switch (getStatus()) { case 0: - RS_DIALOGFACTORY->updateMouseWidget(tr("Set relative Zero"), tr("Cancel")); + DIALOGFACTORY->updateMouseWidget(tr("Set relative Zero"), tr("Cancel")); break; default: - RS_DIALOGFACTORY->updateMouseWidget("", ""); + DIALOGFACTORY->updateMouseWidget("", ""); break; } } @@ -95,9 +97,9 @@ void ActionSetRelativeZero::updateMouseCursor() void ActionSetRelativeZero::updateToolBar() { if (!isFinished()) - RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarSnap); + DIALOGFACTORY->requestToolBar(RS2::ToolBarSnap); else - RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarSnap); + DIALOGFACTORY->requestToolBar(RS2::ToolBarSnap); }