X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.NUI%2Fsrc%2Finternal%2FFloatSignal.cs;h=cad0be270d195cb66641a80a2de80d9b5fcb4d8b;hb=f887acd3ee2d68a060c32f60dd006ebc1c9257c1;hp=d687f0d4c3af0e1d7a55a277ede8c529908f0338;hpb=51ae984adb3f74a7e68e2045f3c265fe213d4bcf;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI/src/internal/FloatSignal.cs b/src/Tizen.NUI/src/internal/FloatSignal.cs index d687f0d..cad0be2 100755 --- a/src/Tizen.NUI/src/internal/FloatSignal.cs +++ b/src/Tizen.NUI/src/internal/FloatSignal.cs @@ -36,14 +36,14 @@ namespace Tizen.NUI public bool Empty() { - bool ret = Interop.FloatSignal.Empty(swigCPtr); + bool ret = Interop.FloatSignal.Empty(SwigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } public uint GetConnectionCount() { - uint ret = Interop.FloatSignal.GetConnectionCount(swigCPtr); + uint ret = Interop.FloatSignal.GetConnectionCount(SwigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -52,7 +52,7 @@ namespace Tizen.NUI { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { - Interop.FloatSignal.Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); + Interop.FloatSignal.Connect(SwigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } @@ -61,14 +61,14 @@ namespace Tizen.NUI { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { - Interop.FloatSignal.Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); + Interop.FloatSignal.Disconnect(SwigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } public void Emit(float arg) { - Interop.FloatSignal.Emit(swigCPtr, arg); + Interop.FloatSignal.Emit(SwigCPtr, arg); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); }