X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionblocksfreezeall.cpp;h=6a152f194799e63a6a2f228f1f96ce246899910e;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=86321ee7ff3fd97085a7edbbf8bf5f41bf54621a;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionblocksfreezeall.cpp b/src/actions/actionblocksfreezeall.cpp index 86321ee..6a152f1 100644 --- a/src/actions/actionblocksfreezeall.cpp +++ b/src/actions/actionblocksfreezeall.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" #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);