]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionlayerstoggleview.cpp
Bugfixes related to removing Snapper class.
[architektonas] / src / actions / actionlayerstoggleview.cpp
index 6a1d8513e5a35fe31ad86c042bca2f6ad5417176..e75647f55eab11e675fb955f1b478ae265c43d11 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>
 //
@@ -16,7 +18,7 @@
 
 #include "drawing.h"
 
-ActionLayersToggleView::ActionLayersToggleView(RS_EntityContainer & container, GraphicView & graphicView): ActionInterface("Toggle Layer Visibility",
+ActionLayersToggleView::ActionLayersToggleView(EntityContainer & container, GraphicView & graphicView): ActionInterface("Toggle Layer Visibility",
                container, graphicView)
 {
 }
@@ -27,11 +29,11 @@ ActionLayersToggleView::~ActionLayersToggleView()
 
 void ActionLayersToggleView::trigger()
 {
-       RS_DEBUG->print("toggle layer");
+       DEBUG->print("toggle layer");
 
        if (graphic != NULL)
        {
-               RS_Layer * layer = graphic->getActiveLayer();
+               Layer * layer = graphic->getActiveLayer();
                graphic->toggleLayer(layer);
        }