]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionselectsingle.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionselectsingle.h
index 20d0c95d20da6f2d4abd3a76d1d4f3e9f4fa01d1..015817a01d419e55b5a71e859703392634362a65 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 ActionSelectSingle: public ActionInterface
 {
        public:
-               ActionSelectSingle(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionSelectSingle(EntityContainer & container, GraphicView & graphicView);
                ~ActionSelectSingle();
 
                virtual RS2::ActionType rtti();
@@ -24,7 +24,7 @@ class ActionSelectSingle: public ActionInterface
                virtual void updateMouseCursor();
 
        private:
-               RS_Entity * en;
+               Entity * en;
 };
 
 #endif // __ACTIONSELECTSINGLE_H__