X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-sharp%2Fsharp%2Finternal%2FTouchPoint.cs;h=f4428fb81caac140aad5c587a8ff2010c69f0123;hp=cd98332d03f0bc477732ee0d2335f264804bee34;hb=665d92f07e3e06e1db65a473c6eb6869dc476c03;hpb=82e6a46b87c64df1be36cf414f6e94f9d17d52ff diff --git a/plugins/dali-sharp/sharp/internal/TouchPoint.cs b/plugins/dali-sharp/sharp/internal/TouchPoint.cs index cd98332..f4428fb 100644 --- a/plugins/dali-sharp/sharp/internal/TouchPoint.cs +++ b/plugins/dali-sharp/sharp/internal/TouchPoint.cs @@ -28,7 +28,7 @@ public class TouchPoint : global::System.IDisposable { } public virtual void Dispose() { - if (!Stage.IsInstalled()) { + if (!Window.IsInstalled()) { DisposeQueue.Instance.Add(this); return; } @@ -78,14 +78,14 @@ public class TouchPoint : global::System.IDisposable { } } - public Actor hitActor { + public View hitView { set { - NDalicPINVOKE.TouchPoint_hitActor_set(swigCPtr, Actor.getCPtr(value)); + NDalicPINVOKE.TouchPoint_hitActor_set(swigCPtr, View.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } get { global::System.IntPtr cPtr = NDalicPINVOKE.TouchPoint_hitActor_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; }