From: SungHyun Min Date: Mon, 10 Jul 2017 07:34:36 +0000 (+0900) Subject: Fix to return wrong Entry.TextStyle vlaue X-Git-Tag: submit/trunk/20170823.075128~110^2~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=a118d18f2fbb20a4b5ecd4c00492a7d637dd0063;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Fix to return wrong Entry.TextStyle vlaue TASK=TCAPI-2354 Change-Id: If0f86513a27d344a794ce26ec507fb89603ab16d --- 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); }