]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifytrimamount.h
In the middle of major refactoring...
[architektonas] / src / actions / actionmodifytrimamount.h
similarity index 72%
rename from src/actions/rs_actionmodifytrimamount.h
rename to src/actions/actionmodifytrimamount.h
index e77df4f60573e934e0a944f619b7262f66a31a8a..0f3db59d74d424db177404d0c58fbce885a1ef4a 100644 (file)
@@ -1,7 +1,7 @@
-#ifndef RS_ACTIONMODIFYTRIMAMOUNT_H
-#define RS_ACTIONMODIFYTRIMAMOUNT_H
+#ifndef __ACTIONMODIFYTRIMAMOUNT_H__
+#define __ACTIONMODIFYTRIMAMOUNT_H__
 
-#include "rs_previewactioninterface.h"
+#include "actioninterface.h"
 #include "vector.h"
 
 class RS_Entity;
@@ -10,9 +10,10 @@ class RS_Entity;
  * This action class can handle user events to trim entities by a given
  * amount.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionModifyTrimAmount: public RS_ActionInterface
+class ActionModifyTrimAmount: public ActionInterface
 {
        public:
                /**
@@ -23,8 +24,8 @@ class RS_ActionModifyTrimAmount: public RS_ActionInterface
                };
 
        public:
-               RS_ActionModifyTrimAmount(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionModifyTrimAmount();
+               ActionModifyTrimAmount(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionModifyTrimAmount();
 
                virtual RS2::ActionType rtti();
                virtual void init(int status = 0);
@@ -47,4 +48,4 @@ class RS_ActionModifyTrimAmount: public RS_ActionInterface
                double distance;
 };
 
-#endif
+#endif // __ACTIONMODIFYTRIMAMOUNT_H__