]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifyentity.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionmodifyentity.h
index 991730cdb79572cb1f9ff9ed70c78f96e60ae09c..1431123c53ce3d95ac2cc14eb5adf89111d962fc 100644 (file)
@@ -3,7 +3,7 @@
 
 #include "actioninterface.h"
 
-class RS_Entity;
+class Entity;
 
 /**
  * This action class can handle user events to select entities.
@@ -14,7 +14,7 @@ class RS_Entity;
 class ActionModifyEntity: public ActionInterface
 {
        public:
-               ActionModifyEntity(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionModifyEntity(EntityContainer & container, GraphicView & graphicView);
                ~ActionModifyEntity();
 
                virtual void trigger();
@@ -22,7 +22,7 @@ class ActionModifyEntity: public ActionInterface
                virtual void updateMouseCursor();
 
        private:
-               RS_Entity * en;
+               Entity * en;
 };
 
 #endif // __ACTIONMODIFYENTITY_H__