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