X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Frs_selection.h;h=e0dfea6b431522d3d9b93a7a6ffbc6d13bf5d255;hb=97d3cdae07ec9788cf80e7905abfdb5d67a7747c;hp=d1239e11ec2f351f8c429e83c1304aea2f0e9a7f;hpb=89e127aa3dbd74d3158e6dbe0ca1703420c04395;p=architektonas diff --git a/src/base/rs_selection.h b/src/base/rs_selection.h index d1239e1..e0dfea6 100644 --- a/src/base/rs_selection.h +++ b/src/base/rs_selection.h @@ -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