From 64a4f417b6338b4b21bff4b8bd6e8d3ce6658699 Mon Sep 17 00:00:00 2001 From: Bowon Ryu Date: Mon, 2 Aug 2021 19:13:01 +0900 Subject: [PATCH] fix parameter name to understandable Signed-off-by: Bowon Ryu --- src/Tizen.NUI/src/internal/Interop/Interop.TextEditor.cs | 2 +- src/Tizen.NUI/src/internal/Interop/Interop.TextField.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tizen.NUI/src/internal/Interop/Interop.TextEditor.cs b/src/Tizen.NUI/src/internal/Interop/Interop.TextEditor.cs index 4ea2379..4c2dad8 100755 --- a/src/Tizen.NUI/src/internal/Interop/Interop.TextEditor.cs +++ b/src/Tizen.NUI/src/internal/Interop/Interop.TextEditor.cs @@ -236,7 +236,7 @@ namespace Tizen.NUI public static extern void SelectWholeText(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_TextEditor_SelectText")] - public static extern void SelectText(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3); + public static extern void SelectText(global::System.Runtime.InteropServices.HandleRef textEditorRef, uint start, uint end); [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_TextEditor_Property_SELECTED_TEXT_get")] public static extern int SelectedTextGet(); diff --git a/src/Tizen.NUI/src/internal/Interop/Interop.TextField.cs b/src/Tizen.NUI/src/internal/Interop/Interop.TextField.cs index 4c31d16..6362419 100755 --- a/src/Tizen.NUI/src/internal/Interop/Interop.TextField.cs +++ b/src/Tizen.NUI/src/internal/Interop/Interop.TextField.cs @@ -251,7 +251,7 @@ namespace Tizen.NUI public static extern void SelectWholeText(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_TextField_SelectText")] - public static extern void SelectText(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3); + public static extern void SelectText(global::System.Runtime.InteropServices.HandleRef textFieldRef, uint start, uint end); [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_TextField_Property_ENABLE_GRAB_HANDLE_get")] public static extern int EnableGrabHandleGet(); -- 2.7.4