X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionmodifytrim.h;h=292d339cb276aa67bd1250f12aa744636b0c466d;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=e91af171e39702ec32cf2f52e7616c25bd693159;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionmodifytrim.h b/src/actions/actionmodifytrim.h index e91af17..292d339 100644 --- a/src/actions/actionmodifytrim.h +++ b/src/actions/actionmodifytrim.h @@ -4,7 +4,7 @@ #include "actioninterface.h" #include "vector.h" -class RS_Entity; +class Entity; /** * This action class can handle user events to trim entities. @@ -24,7 +24,7 @@ class ActionModifyTrim: public ActionInterface }; public: - ActionModifyTrim(RS_EntityContainer & container, GraphicView & graphicView, bool both = false); + ActionModifyTrim(EntityContainer & container, GraphicView & graphicView, bool both = false); ~ActionModifyTrim(); virtual void init(int status = 0); @@ -36,9 +36,9 @@ class ActionModifyTrim: public ActionInterface virtual void updateToolBar(); private: - RS_Entity * limitEntity; + Entity * limitEntity; Vector limitCoord; - RS_Entity * trimEntity; + Entity * trimEntity; Vector trimCoord; bool both; };