]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionblocksexplode.cpp
Bugfixes related to removing Snapper class.
[architektonas] / src / actions / actionblocksexplode.cpp
index 40241483f8f3cdbec8d5c4d6d0063c5e6a7f1e4e..f000b18f06e97ae49f2e7f6fff8c9f81b94a9f68 100644 (file)
@@ -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 <jlhamm@acm.org>
 //
 
 #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();
 }