]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_clipboard.h
Start of bringing back missing forms/dialogs
[architektonas] / src / base / rs_clipboard.h
index 842fc695c3664d87598806673c5f6e0da4a3f432..5e8c27036726d50e46e36b8c6e9af78c2df9e17a 100644 (file)
@@ -2,7 +2,7 @@
 #define RS_CLIPBOARD_H
 
 #include <iostream>
-#include "rs_graphic.h"
+#include "drawing.h"
 
 #define RS_CLIPBOARD RS_Clipboard::instance()
 
@@ -69,7 +69,7 @@ public:
                return graphic.nextEntity();
        }
 
-       RS_Graphic* getGraphic() {
+       Drawing* getGraphic() {
                return &graphic;
        }
 
@@ -78,7 +78,7 @@ public:
 protected:
     static RS_Clipboard* uniqueInstance;
 
-       RS_Graphic graphic;
+       Drawing graphic;
 };
 
 #endif