]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionblockstoggleview.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionblockstoggleview.cpp
index 176f363af70df4c37272125cebb61b47dd1ea0ce..89bbcd8f12fb0fd8ff7d8339348a1aaf6c895ca5 100644 (file)
@@ -19,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)
 {
@@ -31,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);
        }