]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actioninfoangle.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actioninfoangle.h
index 8c878c7bdefe2c035c9a652be88d19661cc3c240..fc7f230d70dde7217557b2414eb89fc0181fc9af 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 measure angles.
@@ -24,7 +24,7 @@ class ActionInfoAngle: public ActionInterface
                };
 
        public:
-               ActionInfoAngle(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionInfoAngle(EntityContainer & container, GraphicView & graphicView);
                ~ActionInfoAngle();
 
                virtual void init(int status = 0);
@@ -36,10 +36,10 @@ class ActionInfoAngle: public ActionInterface
                virtual void updateToolBar();
 
        private:
-               RS_Entity * entity1;
+               Entity * entity1;
                Vector point1;
 
-               RS_Entity * entity2;
+               Entity * entity2;
                Vector point2;
 
                Vector intersection;