X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionsnapintersectionmanual.h;h=e804b4a00ce001376fc1accb6c43d5f6082eee21;hb=5adb444f3e523d3fd028617ced72d1ea6661db21;hp=b119c50614604e67085590938cbdc4cef475a3e1;hpb=d774c2655ba2c3657a565f325411144452392277;p=architektonas diff --git a/src/actions/actionsnapintersectionmanual.h b/src/actions/actionsnapintersectionmanual.h index b119c50..e804b4a 100644 --- a/src/actions/actionsnapintersectionmanual.h +++ b/src/actions/actionsnapintersectionmanual.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 ActionSnapIntersectionManual: public ActionInterface }; public: - ActionSnapIntersectionManual(RS_EntityContainer & container, GraphicView & graphicView); + ActionSnapIntersectionManual(EntityContainer & container, GraphicView & graphicView); ~ActionSnapIntersectionManual(); virtual void init(int status = 0); @@ -36,8 +36,8 @@ class ActionSnapIntersectionManual: public ActionInterface virtual void updateToolBar(); private: - RS_Entity * entity1; - RS_Entity * entity2; + Entity * entity1; + Entity * entity2; Vector coord; };