X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionblocksexplode.cpp;h=f000b18f06e97ae49f2e7f6fff8c9f81b94a9f68;hb=2ee84c5948ede7fc2f7b4435c5edef42a030ac05;hp=3c394ccfcb8e1d284c985175b3c8af74d549a0e2;hpb=865303923fcb231a171992b75a73364ff469ff8c;p=architektonas diff --git a/src/actions/actionblocksexplode.cpp b/src/actions/actionblocksexplode.cpp index 3c394cc..f000b18 100644 --- a/src/actions/actionblocksexplode.cpp +++ b/src/actions/actionblocksexplode.cpp @@ -16,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) { } @@ -45,6 +45,6 @@ void ActionBlocksExplode::init(int status) void ActionBlocksExplode::trigger() { - RS_Modification m(*container, graphicView); + Modification m(*container, graphicView); m.explode(); }