]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actiondrawlinefree.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / actions / actiondrawlinefree.h
index 2aabde6422a3edeac750e856cbc0c0d8fa64f96f..e77c3a2247fdeb57a36490c4b1a5206e36847c36 100644 (file)
@@ -4,7 +4,7 @@
 #include "actioninterface.h"
 #include "vector.h"
 
-class RS_Polyline;
+class Polyline;
 
 /**
  * This action class can handle user events to draw freehand lines.
@@ -15,7 +15,7 @@ class RS_Polyline;
 class ActionDrawLineFree: public ActionInterface
 {
        public:
-               ActionDrawLineFree(RS_EntityContainer & container, GraphicView & graphicView);
+               ActionDrawLineFree(EntityContainer & container, GraphicView & graphicView);
                ~ActionDrawLineFree();
 
                virtual void trigger();
@@ -28,7 +28,7 @@ class ActionDrawLineFree: public ActionInterface
 
        protected:
                Vector vertex;
-               RS_Polyline * polyline;
+               Polyline * polyline;
 };
 
 #endif // __ACTIONDRAWLINEFREE_H__