]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_snapper.h
Refactoring: Moved RS_GraphicView to GraphicView.
[architektonas] / src / base / rs_snapper.h
index 89351d6ad3f6d5b7ce0e21e5c75d3dcb075dcde0..30e4a0cd0d55d0bef05efcf36cc7fcbc42093c03 100644 (file)
@@ -7,7 +7,7 @@
 
 class RS_Entity;
 class RS_EntityContainer;
-class RS_GraphicView;
+class GraphicView;
 
 /**
  * This class is used for snapping functions in a graphic view.
@@ -22,7 +22,7 @@ class RS_GraphicView;
 class RS_Snapper
 {
        public:
-               RS_Snapper(RS_EntityContainer & container, RS_GraphicView & graphicView);
+               RS_Snapper(RS_EntityContainer & container, GraphicView & graphicView);
                virtual ~RS_Snapper();
 
                void init();
@@ -66,7 +66,7 @@ class RS_Snapper
 
        protected:
                RS_EntityContainer * container;
-               RS_GraphicView * graphicView;
+               GraphicView * graphicView;
                RS_Entity * keyEntity;
                Vector snapCoord;
                Vector snapSpot;