From: Seoyeon2Kim <34738918+Seoyeon2Kim@users.noreply.github.com> Date: Tue, 8 Oct 2019 02:05:07 +0000 (+0900) Subject: [NUI] Fix the return value of logicalKey (#1062) X-Git-Tag: 5.5_M2~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c01ae369b343d3c3c2be0a0a3e40658a75ce65e2;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Fix the return value of logicalKey (#1062) - Should return 'ret' value of string type Signed-off-by: Seoyeon Kim --- diff --git a/src/Tizen.NUI/src/public/Key.cs b/src/Tizen.NUI/src/public/Key.cs index 7e11b26..58fd163 100755 --- a/src/Tizen.NUI/src/public/Key.cs +++ b/src/Tizen.NUI/src/public/Key.cs @@ -365,7 +365,7 @@ namespace Tizen.NUI { string ret = Interop.Key.Key_logicalKey_get(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ""; + return ret; } }