]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionblockstoggleview.cpp
Phase two of adding polyline functionality...
[architektonas] / src / actions / actionblockstoggleview.cpp
index 75087d151f734039fc2dc49a398100b1cd20150e..89bbcd8f12fb0fd8ff7d8339348a1aaf6c895ca5 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"
 
-ActionBlocksToggleView::ActionBlocksToggleView(RS_EntityContainer & container,
+ActionBlocksToggleView::ActionBlocksToggleView(EntityContainer & container,
        GraphicView & graphicView): ActionInterface("Toggle Block Visibility",
        container, graphicView)
 {
@@ -29,11 +31,11 @@ ActionBlocksToggleView::~ActionBlocksToggleView()
 
 void ActionBlocksToggleView::trigger()
 {
-       RS_DEBUG->print("toggle block");
+       DEBUG->print("toggle block");
 
        if (graphic)
        {
-               RS_Block * block = graphic->getActiveBlock();
+               Block * block = graphic->getActiveBlock();
                graphic->toggleBlock(block);
        }