X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionlayersfreezeall.cpp;h=15b067d5e411bc0452d121e9e5dbedff3941895d;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=13ebe1cc38c7585073b3e8a1e432735c0f851e7d;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionlayersfreezeall.cpp b/src/actions/actionlayersfreezeall.cpp index 13ebe1c..15b067d 100644 --- a/src/actions/actionlayersfreezeall.cpp +++ b/src/actions/actionlayersfreezeall.cpp @@ -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 // @@ -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);