From 83bb79ca6a2c3655f137682d58e0abcf3c1c4a75 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Tue, 10 Oct 2017 11:32:13 +0900 Subject: [PATCH] [Inputmethod manager] Fix build warning Change-Id: I52c6b0526e873731fed4c3a276f68c891e9ae8bc Signed-off-by: sungwook79.park --- .../Interop/Interop.InputMethodManager.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Tizen.Uix.InputMethodManager/Interop/Interop.InputMethodManager.cs b/src/Tizen.Uix.InputMethodManager/Interop/Interop.InputMethodManager.cs index d9a4347..fe9598f 100755 --- a/src/Tizen.Uix.InputMethodManager/Interop/Interop.InputMethodManager.cs +++ b/src/Tizen.Uix.InputMethodManager/Interop/Interop.InputMethodManager.cs @@ -34,10 +34,10 @@ internal static partial class Interop internal enum ErrorCode { - None = Tizen.Internals.Errors.ErrorCode.None, /**< Successful */ - InvalidParameter = Tizen.Internals.Errors.ErrorCode.InvalidParameter, /**< Invalid parameter */ - PermissionDenied = Tizen.Internals.Errors.ErrorCode.PermissionDenied, /**< Permission denied */ - OperationFailed = ErrorInputMethodManager | 0x0010, /**< Operation failed */ + None = Tizen.Internals.Errors.ErrorCode.None, + InvalidParameter = Tizen.Internals.Errors.ErrorCode.InvalidParameter, + PermissionDenied = Tizen.Internals.Errors.ErrorCode.PermissionDenied, + OperationFailed = ErrorInputMethodManager | 0x0010, }; [DllImport(Libraries.InputMethodManager, EntryPoint = "ime_manager_show_ime_list")] -- 2.7.4