]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionsetrelativezero.cpp
Bugfixes related to removing Snapper class.
[architektonas] / src / actions / actionsetrelativezero.cpp
index b77d5106ac41fadc9d26e7da3bf54b9cadbc58b2..98297a1b37960853c2c5425fdda1c590902fb259 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 "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);
 }