X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionsetrelativezero.cpp;h=98297a1b37960853c2c5425fdda1c590902fb259;hb=5adb444f3e523d3fd028617ced72d1ea6661db21;hp=ef69b13ff280a8ba68c21818c03b4f6f2865dbdf;hpb=865303923fcb231a171992b75a73364ff469ff8c;p=architektonas diff --git a/src/actions/actionsetrelativezero.cpp b/src/actions/actionsetrelativezero.cpp index ef69b13..98297a1 100644 --- a/src/actions/actionsetrelativezero.cpp +++ b/src/actions/actionsetrelativezero.cpp @@ -16,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) { @@ -80,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; } } @@ -97,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); }