]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionblocksexplode.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionblocksexplode.cpp
index 3e29a70ba14aed7a2ec09b0d5e6f7880d6607cd1..f000b18f06e97ae49f2e7f6fff8c9f81b94a9f68 100644 (file)
@@ -21,7 +21,7 @@
 /**
  * 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();
 }