]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionblocksfreezeall.cpp
Phase two of adding polyline functionality...
[architektonas] / src / actions / actionblocksfreezeall.cpp
index 86321ee7ff3fd97085a7edbbf8bf5f41bf54621a..6a152f194799e63a6a2f228f1f96ce246899910e 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>
 //
@@ -17,7 +19,7 @@
 #include "drawing.h"
 #include "graphicview.h"
 
-ActionBlocksFreezeAll::ActionBlocksFreezeAll(bool freeze, RS_EntityContainer & container,
+ActionBlocksFreezeAll::ActionBlocksFreezeAll(bool freeze, EntityContainer & container,
        GraphicView & graphicView): ActionInterface("Freeze all Blocks", container, graphicView)
 {
        this->freeze = freeze;
@@ -29,7 +31,7 @@ ActionBlocksFreezeAll::~ActionBlocksFreezeAll()
 
 void ActionBlocksFreezeAll::trigger()
 {
-       RS_DEBUG->print("ActionBlocksFreezeAll::trigger");
+       DEBUG->print("ActionBlocksFreezeAll::trigger");
 
        if (graphic)
                graphic->freezeAllBlocks(freeze);