]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_selection.h
Refactoring: Moved RS_GraphicView to GraphicView.
[architektonas] / src / base / rs_selection.h
index d1239e11ec2f351f8c429e83c1304aea2f0e9a7f..e0dfea6b431522d3d9b93a7a6ffbc6d13bf5d255 100644 (file)
@@ -2,7 +2,7 @@
 #define RS_SELECTION_H
 
 #include "rs_entitycontainer.h"
-#include "rs_graphicview.h"
+#include "graphicview.h"
 
 /**
  * API Class for selecting entities.
@@ -16,7 +16,7 @@ class RS_Selection
 {
        public:
                RS_Selection(RS_EntityContainer & entityContainer,
-                                       RS_GraphicView * graphicView = NULL);
+                       GraphicView * graphicView = NULL);
 
                void selectSingle(RS_Entity * e);
                void selectAll(bool select = true);
@@ -36,7 +36,7 @@ class RS_Selection
        protected:
                RS_EntityContainer * container;
                Drawing * graphic;
-               RS_GraphicView * graphicView;
+               GraphicView * graphicView;
 };
 
 #endif