]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionselectcontour.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionselectcontour.h
index 309b81ba539a2b347d936ce5cdcfb200f50766e4..3fc47ddf20926a13c7d3378be84da0248f23f660 100644 (file)
@@ -3,7 +3,7 @@
 
 #include "actioninterface.h"
 
-class RS_Entity;
+class Entity;
 
 /**
  * This action class can handle user events to select contours.
@@ -14,7 +14,7 @@ class RS_Entity;
 class ActionSelectContour: public ActionInterface
 {
        public:
-               ActionSelectContour(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionSelectContour(EntityContainer & container, GraphicView & graphicView);
                ~ActionSelectContour();
 
                virtual RS2::ActionType rtti();
@@ -23,7 +23,7 @@ class ActionSelectContour: public ActionInterface
                virtual void updateMouseCursor();
 
        private:
-               RS_Entity * en;
+               Entity * en;
 };
 
 #endif // __ACTIONSELECTCONTOURS_H__