X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionmodifydeletefree.h;h=94630c3e133591d6fc26cdcf3a863212ffc90254;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=694639d5e5d5760a6c239808ad2e8c9301ae2045;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionmodifydeletefree.h b/src/actions/actionmodifydeletefree.h index 694639d..94630c3 100644 --- a/src/actions/actionmodifydeletefree.h +++ b/src/actions/actionmodifydeletefree.h @@ -4,8 +4,8 @@ #include "actioninterface.h" #include "vector.h" -class RS_Entity; -class RS_Polyline; +class Entity; +class Polyline; /** * This action class can handle user events to delete entities. @@ -16,7 +16,7 @@ class RS_Polyline; class ActionModifyDeleteFree: public ActionInterface { public: - ActionModifyDeleteFree(RS_EntityContainer & container, GraphicView & graphicView); + ActionModifyDeleteFree(EntityContainer & container, GraphicView & graphicView); ~ActionModifyDeleteFree(); virtual void init(int status = 0); @@ -25,10 +25,10 @@ class ActionModifyDeleteFree: public ActionInterface virtual void updateMouseButtonHints(); private: - RS_Polyline * polyline; - RS_Entity * e1; + Polyline * polyline; + Entity * e1; Vector v1; - RS_Entity * e2; + Entity * e2; Vector v2; };