|
@@ -8,9 +8,9 @@
|
|
|
|
|
|
|
|
namespace oxygine
|
|
namespace oxygine
|
|
|
{
|
|
{
|
|
|
-
|
|
|
|
|
- WebImage::WebImage(const WebImage& src, copyOptions opt) : Actor(src, opt)
|
|
|
|
|
|
|
+ void WebImage::copyFrom(const WebImage& src, cloneOptions opt)
|
|
|
{
|
|
{
|
|
|
|
|
+ inherited::copyFrom(src, opt);
|
|
|
_http = 0;
|
|
_http = 0;
|
|
|
_image = getChildT<Sprite>("_child_");
|
|
_image = getChildT<Sprite>("_child_");
|
|
|
}
|
|
}
|
|
@@ -150,4 +150,4 @@ namespace oxygine
|
|
|
{
|
|
{
|
|
|
inherited::deserialize(data);
|
|
inherited::deserialize(data);
|
|
|
}
|
|
}
|
|
|
-}
|
|
|
|
|
|
|
+}
|