X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factiondrawlinefree.h;h=e77c3a2247fdeb57a36490c4b1a5206e36847c36;hb=2ee84c5948ede7fc2f7b4435c5edef42a030ac05;hp=2aabde6422a3edeac750e856cbc0c0d8fa64f96f;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actiondrawlinefree.h b/src/actions/actiondrawlinefree.h index 2aabde6..e77c3a2 100644 --- a/src/actions/actiondrawlinefree.h +++ b/src/actions/actiondrawlinefree.h @@ -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__