]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionlayerstoggleview.cpp
In the middle of major refactoring...
[architektonas] / src / actions / actionlayerstoggleview.cpp
similarity index 60%
rename from src/actions/rs_actionlayerstoggleview.cpp
rename to src/actions/actionlayerstoggleview.cpp
index 1e824d6c7ed557a96a710e3bb21823ccc68e08f3..6a1d8513e5a35fe31ad86c042bca2f6ad5417176 100644 (file)
@@ -1,4 +1,4 @@
-// rs_actionlayerstoggleview.cpp
+// actionlayerstoggleview.cpp
 //
 // Part of the Architektonas Project
 // Originally part of QCad Community Edition by Andrew Mustun
 // JLH  06/04/2010  Added this text. :-)
 //
 
-#include "rs_actionlayerstoggleview.h"
+#include "actionlayerstoggleview.h"
 
 #include "drawing.h"
 
-RS_ActionLayersToggleView::RS_ActionLayersToggleView(RS_EntityContainer & container, GraphicView & graphicView): RS_ActionInterface("Toggle Layer Visibility",
+ActionLayersToggleView::ActionLayersToggleView(RS_EntityContainer & container, GraphicView & graphicView): ActionInterface("Toggle Layer Visibility",
                container, graphicView)
 {
 }
 
-RS_ActionLayersToggleView::~RS_ActionLayersToggleView()
+ActionLayersToggleView::~ActionLayersToggleView()
 {
 }
 
-void RS_ActionLayersToggleView::trigger()
+void ActionLayersToggleView::trigger()
 {
        RS_DEBUG->print("toggle layer");
 
@@ -38,9 +38,8 @@ void RS_ActionLayersToggleView::trigger()
        finish();
 }
 
-void RS_ActionLayersToggleView::init(int status)
+void ActionLayersToggleView::init(int status)
 {
-       RS_ActionInterface::init(status);
+       ActionInterface::init(status);
        trigger();
 }
-