]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionlayersfreezeall.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionlayersfreezeall.cpp
index a53ef915e7a8139a1eb8331b2d87043e2dbba567..15b067d5e411bc0452d121e9e5dbedff3941895d 100644 (file)
@@ -19,7 +19,7 @@
 #include "drawing.h"
 
 ActionLayersFreezeAll::ActionLayersFreezeAll(bool freeze,
-       RS_EntityContainer & container, GraphicView & graphicView):
+       EntityContainer & container, GraphicView & graphicView):
        ActionInterface("Freeze all Layers", container, graphicView)
 {
        this->freeze = freeze;
@@ -31,7 +31,7 @@ ActionLayersFreezeAll::~ActionLayersFreezeAll()
 
 void ActionLayersFreezeAll::trigger()
 {
-       RS_DEBUG->print("ActionLayersFreezeAll::trigger");
+       DEBUG->print("ActionLayersFreezeAll::trigger");
 
        if (graphic)
                graphic->freezeAllLayers(freeze);