X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionselectsingle.h;h=015817a01d419e55b5a71e859703392634362a65;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=20d0c95d20da6f2d4abd3a76d1d4f3e9f4fa01d1;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionselectsingle.h b/src/actions/actionselectsingle.h index 20d0c95..015817a 100644 --- a/src/actions/actionselectsingle.h +++ b/src/actions/actionselectsingle.h @@ -3,7 +3,7 @@ #include "actioninterface.h" -class RS_Entity; +class Entity; /** * This action class can handle user events to select entities. @@ -14,7 +14,7 @@ class RS_Entity; class ActionSelectSingle: public ActionInterface { public: - ActionSelectSingle(RS_EntityContainer & container, GraphicView & graphicView); + ActionSelectSingle(EntityContainer & container, GraphicView & graphicView); ~ActionSelectSingle(); virtual RS2::ActionType rtti(); @@ -24,7 +24,7 @@ class ActionSelectSingle: public ActionInterface virtual void updateMouseCursor(); private: - RS_Entity * en; + Entity * en; }; #endif // __ACTIONSELECTSINGLE_H__