]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionlayerstogglelock.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionlayerstogglelock.cpp
index 84aa552356a782c12b40ea06b02d75088e61e097..6ea9e2088e810a8abc4b5d953d297ca876f9b2d1 100644 (file)
@@ -19,7 +19,7 @@
 #include "graphicview.h"
 #include "drawing.h"
 
-ActionLayersToggleLock::ActionLayersToggleLock(RS_EntityContainer & container, GraphicView & graphicView): ActionInterface("Toggle Layer Visibility",
+ActionLayersToggleLock::ActionLayersToggleLock(EntityContainer & container, GraphicView & graphicView): ActionInterface("Toggle Layer Visibility",
                container, graphicView)
 {
 }
@@ -30,11 +30,11 @@ ActionLayersToggleLock::~ActionLayersToggleLock()
 
 void ActionLayersToggleLock::trigger()
 {
-       RS_DEBUG->print("toggle layer");
+       DEBUG->print("toggle layer");
 
        if (graphic)
        {
-               RS_Layer * layer = graphic->getActiveLayer();
+               Layer * layer = graphic->getActiveLayer();
 
                if (layer)
                {
@@ -43,7 +43,7 @@ void ActionLayersToggleLock::trigger()
                        // deselect entities on locked layer:
                        if (layer->isLocked())
                        {
-                               for(RS_Entity * e=container->firstEntity(); e!=NULL;
+                               for(Entity * e=container->firstEntity(); e!=NULL;
                                        e=container->nextEntity())
                                {
                                        if (e != NULL && e->isVisible() && e->getLayer() == layer)