X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionmodifytrim.h;fp=src%2Factions%2Frs_actionmodifytrim.h;h=e91af171e39702ec32cf2f52e7616c25bd693159;hb=d774c2655ba2c3657a565f325411144452392277;hp=f88156d6ef9347b50ddfe0774594644763146860;hpb=468780dd17f8b0ebb35427a9fc43491721d44d69;p=architektonas diff --git a/src/actions/rs_actionmodifytrim.h b/src/actions/actionmodifytrim.h similarity index 69% rename from src/actions/rs_actionmodifytrim.h rename to src/actions/actionmodifytrim.h index f88156d..e91af17 100644 --- a/src/actions/rs_actionmodifytrim.h +++ b/src/actions/actionmodifytrim.h @@ -1,7 +1,7 @@ -#ifndef RS_ACTIONMODIFYTRIM_H -#define RS_ACTIONMODIFYTRIM_H +#ifndef __ACTIONMODIFYTRIM_H__ +#define __ACTIONMODIFYTRIM_H__ -#include "rs_previewactioninterface.h" +#include "actioninterface.h" #include "vector.h" class RS_Entity; @@ -9,9 +9,10 @@ class RS_Entity; /** * This action class can handle user events to trim entities. * + * @author James Hammons * @author Andrew Mustun */ -class RS_ActionModifyTrim: public RS_PreviewActionInterface +class ActionModifyTrim: public ActionInterface { public: /** @@ -23,8 +24,8 @@ class RS_ActionModifyTrim: public RS_PreviewActionInterface }; public: - RS_ActionModifyTrim(RS_EntityContainer & container, GraphicView & graphicView, bool both = false); - ~RS_ActionModifyTrim(); + ActionModifyTrim(RS_EntityContainer & container, GraphicView & graphicView, bool both = false); + ~ActionModifyTrim(); virtual void init(int status = 0); virtual void trigger(); @@ -42,4 +43,4 @@ class RS_ActionModifyTrim: public RS_PreviewActionInterface bool both; }; -#endif +#endif // __ACTIONMODIFYTRIM_H__