X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionselectcontour.h;h=3fc47ddf20926a13c7d3378be84da0248f23f660;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=309b81ba539a2b347d936ce5cdcfb200f50766e4;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionselectcontour.h b/src/actions/actionselectcontour.h index 309b81b..3fc47dd 100644 --- a/src/actions/actionselectcontour.h +++ b/src/actions/actionselectcontour.h @@ -3,7 +3,7 @@ #include "actioninterface.h" -class RS_Entity; +class Entity; /** * This action class can handle user events to select contours. @@ -14,7 +14,7 @@ class RS_Entity; class ActionSelectContour: public ActionInterface { public: - ActionSelectContour(RS_EntityContainer & container, GraphicView & graphicView); + ActionSelectContour(EntityContainer & container, GraphicView & graphicView); ~ActionSelectContour(); virtual RS2::ActionType rtti(); @@ -23,7 +23,7 @@ class ActionSelectContour: public ActionInterface virtual void updateMouseCursor(); private: - RS_Entity * en; + Entity * en; }; #endif // __ACTIONSELECTCONTOURS_H__