X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Frs_modification.h;h=c4183f9369d90a08a5035a6f5b3d918b35f6c7f7;hb=20cce16e98fc9b052c5862efa6394a285971e846;hp=28cdb84c98bee86b3fad427794a04a40d98b0260;hpb=89e127aa3dbd74d3158e6dbe0ca1703420c04395;p=architektonas diff --git a/src/base/rs_modification.h b/src/base/rs_modification.h index 28cdb84..c4183f9 100644 --- a/src/base/rs_modification.h +++ b/src/base/rs_modification.h @@ -2,7 +2,7 @@ #define RS_MODIFICATION_H #include "rs_entitycontainer.h" -#include "rs_graphicview.h" +#include "graphicview.h" #include "rs_line.h" /** @@ -174,7 +174,7 @@ class RS_Modification { public: RS_Modification(RS_EntityContainer & entityContainer, - RS_GraphicView * graphicView = NULL, bool handleUndo = true); + GraphicView * graphicView = NULL, bool handleUndo = true); void remove(); bool changeAttributes(RS_AttributesData& data); @@ -212,7 +212,6 @@ class RS_Modification bool explode(); bool explodeTextIntoLetters(); -// bool explodeTextIntoLetters(RS_Text* text, Q3PtrList& addList); bool explodeTextIntoLetters(RS_Text * text, QList & addList); bool moveRef(RS_MoveRefData & data); @@ -228,14 +227,13 @@ class RS_Modification private: void deselectOriginals(bool remove); -// void addNewEntities(Q3PtrList& addList); void addNewEntities(QList & addList); protected: RS_EntityContainer * container; Drawing * graphic; RS_Document * document; - RS_GraphicView * graphicView; + GraphicView * graphicView; bool handleUndo; };