]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionlayersfreezeall.cpp
Phase two of adding polyline functionality...
[architektonas] / src / actions / actionlayersfreezeall.cpp
index 13ebe1cc38c7585073b3e8a1e432735c0f851e7d..15b067d5e411bc0452d121e9e5dbedff3941895d 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"
 
 ActionLayersFreezeAll::ActionLayersFreezeAll(bool freeze,
-       RS_EntityContainer & container, GraphicView & graphicView):
+       EntityContainer & container, GraphicView & graphicView):
        ActionInterface("Freeze all Layers", container, graphicView)
 {
        this->freeze = freeze;
@@ -29,7 +31,7 @@ ActionLayersFreezeAll::~ActionLayersFreezeAll()
 
 void ActionLayersFreezeAll::trigger()
 {
-       RS_DEBUG->print("ActionLayersFreezeAll::trigger");
+       DEBUG->print("ActionLayersFreezeAll::trigger");
 
        if (graphic)
                graphic->freezeAllLayers(freeze);