X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-sharp%2Fsharp%2Finternal%2FTouch.cs;h=5bbf844e30ff326b09f3c27b0f65505f69fc4fa1;hp=aa04a65e30e2c8bccb75c1cf719cf64107928769;hb=665d92f07e3e06e1db65a473c6eb6869dc476c03;hpb=6fa08daf440e496896babb230e404aae7e77a5bb diff --git a/plugins/dali-sharp/sharp/internal/Touch.cs b/plugins/dali-sharp/sharp/internal/Touch.cs index aa04a65..5bbf844 100644 --- a/plugins/dali-sharp/sharp/internal/Touch.cs +++ b/plugins/dali-sharp/sharp/internal/Touch.cs @@ -26,7 +26,7 @@ public class Touch : BaseHandle { } public override void Dispose() { - if (!Stage.IsInstalled()) { + if (!Window.IsInstalled()) { DisposeQueue.Instance.Add(this); return; } @@ -89,8 +89,8 @@ public class Touch : BaseHandle { return ret; } - public Actor GetHitActor(uint point) { - Actor ret = new Actor(NDalicPINVOKE.Touch_GetHitActor(swigCPtr, point), true); + public View GetHitView(uint point) { + View ret = new View(NDalicPINVOKE.Touch_GetHitActor(swigCPtr, point), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; }