Fix TextField GetInputMethodContext issue (#252)
authorXianbing Teng <xb.teng@samsung.com>
Tue, 15 May 2018 01:31:58 +0000 (20:31 -0500)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Tue, 15 May 2018 01:31:58 +0000 (10:31 +0900)
[NUI] Fix TextField GetInputMethodContext issue

src/Tizen.NUI/src/public/BaseComponents/TextField.cs

index 01193ec..7a32082 100755 (executable)
@@ -327,7 +327,7 @@ namespace Tizen.NUI.BaseComponents
         /// </summary>
         /// <returns>The InputMethodContext instance.</returns>
         public InputMethodContext GetInputMethodContext() {
-            InputMethodContext ret = new InputMethodContext(NDalicPINVOKE.TextEditor_GetInputMethodContext(swigCPtr), true);
+            InputMethodContext ret = new InputMethodContext(NDalicPINVOKE.TextField_GetInputMethodContext(swigCPtr), true);
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
             return ret;
         }