]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionzoomredraw.cpp
In the middle of major refactoring...
[architektonas] / src / actions / actionzoomredraw.cpp
similarity index 63%
rename from src/actions/rs_actionzoomredraw.cpp
rename to src/actions/actionzoomredraw.cpp
index 3cd34d339233a4a51226fe7b6a4cac99808d709e..eeaaa08e3df861b67f7c95f9b1130acec53a5b01 100644 (file)
@@ -1,4 +1,4 @@
-// rs_actionzoomredraw.cpp
+// actionzoomredraw.cpp
 //
 // Part of the Architektonas Project
 // Originally part of QCad Community Edition by Andrew Mustun
@@ -12,7 +12,7 @@
 // JLH  06/05/2010  Added this text. :-)
 //
 
-#include "rs_actionzoomredraw.h"
+#include "actionzoomredraw.h"
 
 #include "graphicview.h"
 
  * @param keepAspectRatio true: keep same zoom value for x/y.
  *                        false: adjust both x and y individually
  */
-RS_ActionZoomRedraw::RS_ActionZoomRedraw(RS_EntityContainer & container, GraphicView & graphicView):
-       RS_ActionInterface("Redraw", container, graphicView)
+ActionZoomRedraw::ActionZoomRedraw(RS_EntityContainer & container, GraphicView & graphicView):
+       ActionInterface("Redraw", container, graphicView)
 {
 }
 
-RS_ActionZoomRedraw::~RS_ActionZoomRedraw()
+ActionZoomRedraw::~ActionZoomRedraw()
 {
 }
 
-void RS_ActionZoomRedraw::init(int status)
+void ActionZoomRedraw::init(int status)
 {
-       RS_ActionInterface::init(status);
+       ActionInterface::init(status);
        trigger();
 }
 
-void RS_ActionZoomRedraw::trigger()
+void ActionZoomRedraw::trigger()
 {
        graphicView->redraw();
        finish();