summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSungHyun Min <shyun.min@samsung.com>2017-07-10 16:34:36 +0900
committerSungHyun Min <shyun.min@samsung.com>2017-07-10 16:36:21 +0900
commit39922e05511c8ce783b7cf65b7ec92e294e1ba4c (patch)
treeab60b7ee7ae5c8f1ad45b1a7565393836c0efdb0
parentbf9c5feba9d956e2c05e28e869bd931297325616 (diff)
downloadelm-sharp-39922e05511c8ce783b7cf65b7ec92e294e1ba4c.tar.gz
elm-sharp-39922e05511c8ce783b7cf65b7ec92e294e1ba4c.tar.bz2
elm-sharp-39922e05511c8ce783b7cf65b7ec92e294e1ba4c.zip
Fix to return wrong Entry.TextStyle vlaue
TASK=TCAPI-2354 Change-Id: If0f86513a27d344a794ce26ec507fb89603ab16d
-rw-r--r--ElmSharp/Interop/Interop.Elementary.Entry.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ElmSharp/Interop/Interop.Elementary.Entry.cs b/ElmSharp/Interop/Interop.Elementary.Entry.cs
index 4d0d428..23285a7 100644
--- a/ElmSharp/Interop/Interop.Elementary.Entry.cs
+++ b/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);
}