]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actioninfoarea.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actioninfoarea.h
index 9ba718da8a5b89f3cde3a5bdf007bcbe43e5fe29..e9674e5019c02e09373ad374160e7399fccbe009 100644 (file)
@@ -5,7 +5,7 @@
 #include "actioninterface.h"
 #include "vector.h"
 
-class RS_Entity;
+class Entity;
 
 /**
  * This action class can handle user events to measure distances between
@@ -26,7 +26,7 @@ class ActionInfoArea: public ActionInterface
                };
 
        public:
-               ActionInfoArea(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionInfoArea(EntityContainer & container, GraphicView & graphicView);
                ~ActionInfoArea();
 
                virtual void init(int status = 0);
@@ -41,9 +41,9 @@ class ActionInfoArea: public ActionInterface
        private:
                Vector point1;
                Vector prev;
-               RS_Entity * currentLine;
-               RS_Entity * closingLine;
-               RS_InfoArea ia;
+               Entity * currentLine;
+               Entity * closingLine;
+               InfoArea ia;
 };
 
 #endif // __ACTIONINFOAREA_H__