]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionblocksfreezeall.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionblocksfreezeall.cpp
index 99d4db0f51f764bbde51c3f9a02183cae8c7458b..6a152f194799e63a6a2f228f1f96ce246899910e 100644 (file)
@@ -19,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;
@@ -31,7 +31,7 @@ ActionBlocksFreezeAll::~ActionBlocksFreezeAll()
 
 void ActionBlocksFreezeAll::trigger()
 {
-       RS_DEBUG->print("ActionBlocksFreezeAll::trigger");
+       DEBUG->print("ActionBlocksFreezeAll::trigger");
 
        if (graphic)
                graphic->freezeAllBlocks(freeze);