]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionsnapintersectionmanual.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actionsnapintersectionmanual.h
index b119c50614604e67085590938cbdc4cef475a3e1..e804b4a00ce001376fc1accb6c43d5f6082eee21 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 ActionSnapIntersectionManual: public ActionInterface
                };
 
        public:
-               ActionSnapIntersectionManual(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionSnapIntersectionManual(EntityContainer & container, GraphicView & graphicView);
                ~ActionSnapIntersectionManual();
 
                virtual void init(int status = 0);
@@ -36,8 +36,8 @@ class ActionSnapIntersectionManual: public ActionInterface
                virtual void updateToolBar();
 
        private:
-               RS_Entity * entity1;
-               RS_Entity * entity2;
+               Entity * entity1;
+               Entity * entity2;
                Vector coord;
 };