]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_modification.h
Fixed Library Browser...
[architektonas] / src / base / rs_modification.h
index 28cdb84c98bee86b3fad427794a04a40d98b0260..c4183f9369d90a08a5035a6f5b3d918b35f6c7f7 100644 (file)
@@ -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<RS_Entity>& addList);
                bool explodeTextIntoLetters(RS_Text * text, QList<RS_Entity *> & addList);
                bool moveRef(RS_MoveRefData & data);
 
@@ -228,14 +227,13 @@ class RS_Modification
 
        private:
                void deselectOriginals(bool remove);
-//             void addNewEntities(Q3PtrList<RS_Entity>& addList);
                void addNewEntities(QList<RS_Entity *> & addList);
 
        protected:
                RS_EntityContainer * container;
                Drawing * graphic;
                RS_Document * document;
-               RS_GraphicView * graphicView;
+               GraphicView * graphicView;
                bool handleUndo;
 };