]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifytrim.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionmodifytrim.h
index e91af171e39702ec32cf2f52e7616c25bd693159..292d339cb276aa67bd1250f12aa744636b0c466d 100644 (file)
@@ -4,7 +4,7 @@
 #include "actioninterface.h"
 #include "vector.h"
 
-class RS_Entity;
+class Entity;
 
 /**
  * This action class can handle user events to trim entities.
@@ -24,7 +24,7 @@ class ActionModifyTrim: public ActionInterface
                };
 
        public:
-               ActionModifyTrim(RS_EntityContainer & container, GraphicView & graphicView, bool both = false);
+               ActionModifyTrim(EntityContainer & container, GraphicView & graphicView, bool both = false);
                ~ActionModifyTrim();
 
                virtual void init(int status = 0);
@@ -36,9 +36,9 @@ class ActionModifyTrim: public ActionInterface
                virtual void updateToolBar();
 
        private:
-               RS_Entity * limitEntity;
+               Entity * limitEntity;
                Vector limitCoord;
-               RS_Entity * trimEntity;
+               Entity * trimEntity;
                Vector trimCoord;
                bool both;
 };