]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawlinetangent1.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actiondrawlinetangent1.h
index 744291ff65c925fc2e61235cf8a51eeb0defde51..85f097dacd926cac9429d7e625a68017d15354df 100644 (file)
@@ -5,8 +5,8 @@
 #include "actioninterface.h"
 #include "vector.h"
 
-class RS_Line;
-class RS_Entity;
+class Line;
+class Entity;
 
 /**
  * This action class can handle user events to draw tangents from points
@@ -24,7 +24,7 @@ class ActionDrawLineTangent1: public ActionInterface
                };
 
        public:
-               ActionDrawLineTangent1(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionDrawLineTangent1(EntityContainer & container, GraphicView & graphicView);
                ~ActionDrawLineTangent1();
 
                virtual void trigger();
@@ -37,13 +37,13 @@ class ActionDrawLineTangent1: public ActionInterface
 
        private:
                /** Closest tangent. */
-               RS_Line * tangent;
+               Line * tangent;
                /** Chosen startpoint */
                Vector point;
                /** Chosen entity */
-               RS_Entity * circle;
+               Entity * circle;
                /** Data of new tangent */
-               RS_LineData data;
+               LineData data;
 };
 
 #endif // __ACTIONDRAWLINETANGENT1_H__