X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionblocksexplode.cpp;h=f000b18f06e97ae49f2e7f6fff8c9f81b94a9f68;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=40241483f8f3cdbec8d5c4d6d0063c5e6a7f1e4e;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionblocksexplode.cpp b/src/actions/actionblocksexplode.cpp index 4024148..f000b18 100644 --- a/src/actions/actionblocksexplode.cpp +++ b/src/actions/actionblocksexplode.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,12 +16,12 @@ #include "actionblocksexplode.h" -#include "rs_modification.h" +#include "modification.h" /** * Constructor. */ -ActionBlocksExplode::ActionBlocksExplode(RS_EntityContainer & container, GraphicView & graphicView): +ActionBlocksExplode::ActionBlocksExplode(EntityContainer & container, GraphicView & graphicView): ActionInterface("Blocks Explode", container, graphicView) { } @@ -43,6 +45,6 @@ void ActionBlocksExplode::init(int status) void ActionBlocksExplode::trigger() { - RS_Modification m(*container, graphicView); + Modification m(*container, graphicView); m.explode(); }