X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionzoomredraw.cpp;fp=src%2Factions%2Frs_actionzoomredraw.cpp;h=eeaaa08e3df861b67f7c95f9b1130acec53a5b01;hb=d774c2655ba2c3657a565f325411144452392277;hp=3cd34d339233a4a51226fe7b6a4cac99808d709e;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actionzoomredraw.cpp b/src/actions/actionzoomredraw.cpp similarity index 63% rename from src/actions/rs_actionzoomredraw.cpp rename to src/actions/actionzoomredraw.cpp index 3cd34d3..eeaaa08 100644 --- a/src/actions/rs_actionzoomredraw.cpp +++ b/src/actions/actionzoomredraw.cpp @@ -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" @@ -22,22 +22,22 @@ * @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();