X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-sharp%2Fsharp%2Finternal%2FItem.cs;h=56c5d4efea133cbb557d3d705b2b5399ea8cf529;hp=08dbdc08028ed8e9a115f73d713fd40f720214fc;hb=318378db7fbb0bcfb08c3c603f54857d6f5c9639;hpb=d375dceca213569317d81d17cd2d2a4b45122cda diff --git a/plugins/dali-sharp/sharp/internal/Item.cs b/plugins/dali-sharp/sharp/internal/Item.cs index 08dbdc0..56c5d4e 100644 --- a/plugins/dali-sharp/sharp/internal/Item.cs +++ b/plugins/dali-sharp/sharp/internal/Item.cs @@ -10,7 +10,7 @@ namespace Dali { -public class Item : global::System.IDisposable { +internal class Item : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; @@ -44,7 +44,7 @@ public class Item : global::System.IDisposable { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public Item(uint t, Actor u) : this(NDalicPINVOKE.new_Item__SWIG_1(t, Actor.getCPtr(u)), true) { + public Item(uint t, View u) : this(NDalicPINVOKE.new_Item__SWIG_1(t, View.getCPtr(u)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -64,14 +64,14 @@ public class Item : global::System.IDisposable { } } - public Actor second { + public View second { set { - NDalicPINVOKE.Item_second_set(swigCPtr, Actor.getCPtr(value)); + NDalicPINVOKE.Item_second_set(swigCPtr, View.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } get { global::System.IntPtr cPtr = NDalicPINVOKE.Item_second_get(swigCPtr); - Actor ret = (cPtr == global::System.IntPtr.Zero) ? null : new Actor(cPtr, false); + View ret = (cPtr == global::System.IntPtr.Zero) ? null : new View(cPtr, false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; }