]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifyattributes.h
In the middle of major refactoring...
[architektonas] / src / actions / actionmodifyattributes.h
similarity index 55%
rename from src/actions/rs_actionmodifyattributes.h
rename to src/actions/actionmodifyattributes.h
index 6337e0e5e130511e0bbff73dbc449678b4de1bd9..58423fd88284bbe9e715c3aebf6ea63e2b29e296 100644 (file)
@@ -1,15 +1,16 @@
-#ifndef RS_ACTIONMODIFYATTRIBUTES_H
-#define RS_ACTIONMODIFYATTRIBUTES_H
+#ifndef __ACTIONMODIFYATTRIBUTES_H__
+#define __ACTIONMODIFYATTRIBUTES_H__
 
-#include "rs_actioninterface.h"
+#include "actioninterface.h"
 
 /**
  * This action class can handle user events to change the attributes of
  * entities.
  *
+ * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_ActionModifyAttributes: public RS_ActionInterface
+class ActionModifyAttributes: public ActionInterface
 {
        public:
                /**
@@ -20,8 +21,8 @@ class RS_ActionModifyAttributes: public RS_ActionInterface
                };
 
        public:
-               RS_ActionModifyAttributes(RS_EntityContainer & container, GraphicView & graphicView);
-               ~RS_ActionModifyAttributes();
+               ActionModifyAttributes(RS_EntityContainer & container, GraphicView & graphicView);
+               ~ActionModifyAttributes();
 
                virtual void init(int status = 0);
                virtual void trigger();
@@ -30,4 +31,4 @@ class RS_ActionModifyAttributes: public RS_ActionInterface
                virtual void updateToolBar();
 };
 
-#endif
+#endif // __ACTIONMODIFYATTRIBUTES_H__