]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifycut.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionmodifycut.h
index e38ada26b40f9b6592ecaf241691de9c792c98cd..156675abc7218b62d707c668521520a3bf022900 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 divide entities.
@@ -24,7 +24,7 @@ class ActionModifyCut: public ActionInterface
                };
 
        public:
-               ActionModifyCut(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionModifyCut(EntityContainer & container, GraphicView & graphicView);
                ~ActionModifyCut();
 
                virtual void init(int status = 0);
@@ -36,7 +36,7 @@ class ActionModifyCut: public ActionInterface
                virtual void updateToolBar();
 
        private:
-               RS_Entity * cutEntity;
+               Entity * cutEntity;
                Vector cutCoord;
 };