]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifydeletefree.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionmodifydeletefree.h
index 694639d5e5d5760a6c239808ad2e8c9301ae2045..94630c3e133591d6fc26cdcf3a863212ffc90254 100644 (file)
@@ -4,8 +4,8 @@
 #include "actioninterface.h"
 #include "vector.h"
 
-class RS_Entity;
-class RS_Polyline;
+class Entity;
+class Polyline;
 
 /**
  * This action class can handle user events to delete entities.
@@ -16,7 +16,7 @@ class RS_Polyline;
 class ActionModifyDeleteFree: public ActionInterface
 {
        public:
-               ActionModifyDeleteFree(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionModifyDeleteFree(EntityContainer & container, GraphicView & graphicView);
                ~ActionModifyDeleteFree();
 
                virtual void init(int status = 0);
@@ -25,10 +25,10 @@ class ActionModifyDeleteFree: public ActionInterface
                virtual void updateMouseButtonHints();
 
        private:
-               RS_Polyline * polyline;
-               RS_Entity * e1;
+               Polyline * polyline;
+               Entity * e1;
                Vector v1;
-               RS_Entity * e2;
+               Entity * e2;
                Vector v2;
 };