]> Shamusworld >> Repos - architektonas/blobdiff - src/base/modification.cpp
In the middle of chasing down MDI not activating bug, renaming of Graphic to
[architektonas] / src / base / modification.cpp
index 9cac119726fc5d8492623222baefbff7462a269d..5e7f93762adce905b2cf063bb35458e94ba1c839 100644 (file)
 Modification::Modification(EntityContainer & container,
        GraphicView * graphicView, bool handleUndo)
 {
-    this->container = &container;
-    this->graphicView = graphicView;
-    this->handleUndo = handleUndo;
-    graphic = container.getGraphic();
-    document = container.getDocument();
+       this->container = &container;
+       this->graphicView = graphicView;
+       this->handleUndo = handleUndo;
+#warning "!!! Need to rename graphic to drawing !!!"
+       graphic = container.GetDrawing();
+       document = container.getDocument();
 }
 
 /**