[NUI] Fix the return value of logicalKey (#1062)
authorSeoyeon2Kim <34738918+Seoyeon2Kim@users.noreply.github.com>
Tue, 8 Oct 2019 02:05:07 +0000 (11:05 +0900)
committerhuiyueun <35286162+huiyueun@users.noreply.github.com>
Tue, 8 Oct 2019 02:05:07 +0000 (11:05 +0900)
- Should return 'ret' value of string type

Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
src/Tizen.NUI/src/public/Key.cs

index 7e11b26..58fd163 100755 (executable)
@@ -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;
             }
         }