X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionselectlayer.h;h=9ac3493ff8f5ce5c01284e6d3e31842ec6bfa843;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=f3bccc6ff11ac331c8e549c1bc4ce1d636ff4027;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionselectlayer.h b/src/actions/actionselectlayer.h index f3bccc6..9ac3493 100644 --- a/src/actions/actionselectlayer.h +++ b/src/actions/actionselectlayer.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 ActionSelectLayer: public ActionInterface { public: - ActionSelectLayer(RS_EntityContainer & container, GraphicView & graphicView); + ActionSelectLayer(EntityContainer & container, GraphicView & graphicView); ~ActionSelectLayer(); virtual RS2::ActionType rtti(); @@ -23,7 +23,7 @@ class ActionSelectLayer: public ActionInterface virtual void updateMouseCursor(); private: - RS_Entity * en; + Entity * en; }; #endif // __ACTIONSELECTLAYER_H__