]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawarctangential.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actiondrawarctangential.h
index 4e9ace40a7271d55cf562660118c96fc78c933da..71a6b261cec260337df13a0cd8d003bc15535f92 100644 (file)
@@ -5,7 +5,7 @@
 #include "arc.h"
 #include "vector.h"
 
-class RS_AtomicEntity;
+class AtomicEntity;
 
 /**
  * This action class can handle user events to draw
@@ -26,7 +26,7 @@ class ActionDrawArcTangential: public ActionInterface
                };
 
        public:
-               ActionDrawArcTangential(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionDrawArcTangential(EntityContainer & container, GraphicView & graphicView);
                ~ActionDrawArcTangential();
 
                virtual RS2::ActionType rtti();
@@ -37,7 +37,7 @@ class ActionDrawArcTangential: public ActionInterface
                virtual void mouseMoveEvent(QMouseEvent * e);
                virtual void mouseReleaseEvent(QMouseEvent * e);
                virtual void coordinateEvent(Vector * e);
-               virtual void commandEvent(RS_CommandEvent * e);
+               virtual void commandEvent(CommandEvent * e);
                virtual QStringList getAvailableCommands();
                virtual void hideOptions();
                virtual void showOptions();
@@ -51,7 +51,7 @@ class ActionDrawArcTangential: public ActionInterface
                /**
                 * Base entity.
                 */
-               RS_AtomicEntity * baseEntity;
+               AtomicEntity * baseEntity;
                /**
                 * Start point of base entity clicked?
                 */
@@ -63,7 +63,7 @@ class ActionDrawArcTangential: public ActionInterface
                /**
                 * Arc data calculated.
                 */
-               RS_ArcData data;
+               ArcData data;
 };
 
 #endif // __ACTIONDRAWARCTANGENTIAL_H__