From a118d18f2fbb20a4b5ecd4c00492a7d637dd0063 Mon Sep 17 00:00:00 2001 From: SungHyun Min Date: Mon, 10 Jul 2017 16:34:36 +0900 Subject: [PATCH] Fix to return wrong Entry.TextStyle vlaue TASK=TCAPI-2354 Change-Id: If0f86513a27d344a794ce26ec507fb89603ab16d --- src/ElmSharp/Interop/Interop.Elementary.Entry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ElmSharp/Interop/Interop.Elementary.Entry.cs b/src/ElmSharp/Interop/Interop.Elementary.Entry.cs index 4d0d428..23285a7 100644 --- a/src/ElmSharp/Interop/Interop.Elementary.Entry.cs +++ b/src/ElmSharp/Interop/Interop.Elementary.Entry.cs @@ -237,7 +237,7 @@ internal static partial class Interop internal static string elm_entry_text_style_user_peek(IntPtr obj) { - var text = _elm_entry_entry_get(obj); + var text = _elm_entry_text_style_user_peek(obj); return Marshal.PtrToStringAnsi(text); } -- 2.7.4