]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_creation.cpp
Changed RS_Graphic to Drawing; this is less confusing as a drawing is
[architektonas] / src / base / rs_creation.cpp
index 2fe863d3c8505203e03d248f80a441385ec6729b..fb99b2f25e215529f007e0f334f823d462d950e6 100644 (file)
@@ -16,7 +16,7 @@
 
 #include <QtCore>
 #include "rs_constructionline.h"
-#include "rs_graphic.h"
+#include "drawing.h"
 #include "rs_graphicview.h"
 #include "rs_information.h"
 #include "rs_modification.h"
@@ -26,7 +26,7 @@
  * Default constructor.
  *
  * @param container The container to which we will add
- *        entities. Usually that's an RS_Graphic entity but
+ *        entities. Usually that's an Drawing entity but
  *        it can also be a polyline, text, ...
  */
 RS_Creation::RS_Creation(RS_EntityContainer * container, RS_GraphicView * graphicView,
@@ -1200,7 +1200,7 @@ RS_Block * RS_Creation::createBlock(const RS_BlockData & data,
 RS_Insert * RS_Creation::createLibraryInsert(RS_LibraryInsertData & data)
 {
        RS_DEBUG->print("RS_Creation::createLibraryInsert");
-       RS_Graphic g;
+       Drawing g;
 
        if (!g.open(data.file, RS2::FormatUnknown))
        {