X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Frs_clipboard.h;h=5e8c27036726d50e46e36b8c6e9af78c2df9e17a;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=842fc695c3664d87598806673c5f6e0da4a3f432;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/base/rs_clipboard.h b/src/base/rs_clipboard.h index 842fc69..5e8c270 100644 --- a/src/base/rs_clipboard.h +++ b/src/base/rs_clipboard.h @@ -2,7 +2,7 @@ #define RS_CLIPBOARD_H #include -#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