X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factioneditundo.cpp;h=11ed2fc2e4eb1e2c017b34764ee522c17151fa4a;hb=5adb444f3e523d3fd028617ced72d1ea6661db21;hp=17dd207305c71cceb2d29111caff84be769c09d7;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actioneditundo.cpp b/src/actions/actioneditundo.cpp index 17dd207..11ed2fc 100644 --- a/src/actions/actioneditundo.cpp +++ b/src/actions/actioneditundo.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,7 +16,7 @@ #include "actioneditundo.h" -#include "rs_dialogfactory.h" +#include "dialogfactory.h" #include "graphicview.h" /** @@ -22,7 +24,7 @@ * * @param undo true for undo and false for redo. */ -ActionEditUndo::ActionEditUndo(bool undo, RS_EntityContainer & container, GraphicView & graphicView): ActionInterface("Edit Undo", container, graphicView) +ActionEditUndo::ActionEditUndo(bool undo, EntityContainer & container, GraphicView & graphicView): ActionInterface("Edit Undo", container, graphicView) { this->undo = undo; } @@ -49,5 +51,5 @@ void ActionEditUndo::trigger() graphicView->redraw(); finish(); - RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected()); + DIALOGFACTORY->updateSelectionWidget(container->countSelected()); }