[inputmethod] Fix build warning 03/154303/1
authorsungwook79.park <sungwook79.park@samsung.com>
Tue, 10 Oct 2017 04:51:29 +0000 (13:51 +0900)
committersungwook79.park <sungwook79.park@samsung.com>
Tue, 10 Oct 2017 04:52:31 +0000 (13:52 +0900)
Change-Id: Ib5dbe11cf13c04bbddb87a4232da1815a8d3fafa
Signed-off-by: sungwook79.park <sungwook79.park@samsung.com>
src/Tizen.Uix.InputMethod/Interop/Interop.InputMethod.cs
src/Tizen.Uix.InputMethod/Tizen.Uix.InputMethod/EditorWindow.cs
src/Tizen.Uix.InputMethod/Tizen.Uix.InputMethod/InputMethodEditor.cs

index 5c7d227..1ec40cf 100755 (executable)
@@ -35,13 +35,13 @@ 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 */
-            NoCallbackFunction = ErrorInputMethod | 0x0001,                         /**< Necessary callback function is not set */
-            NotRunning = ErrorInputMethod | 0x0002,                                 /**< IME main loop isn't started yet */
-            OperationFailed = ErrorInputMethod | 0x0010,                            /**< Operation failed  */
-            OutOfMemory = Tizen.Internals.Errors.ErrorCode.OutOfMemory              /**< out of memory */
+            None = Tizen.Internals.Errors.ErrorCode.None,
+            InvalidParameter = Tizen.Internals.Errors.ErrorCode.InvalidParameter,
+            PermissionDenied = Tizen.Internals.Errors.ErrorCode.PermissionDenied,
+            NoCallbackFunction = ErrorInputMethod | 0x0001,
+            NotRunning = ErrorInputMethod | 0x0002,
+            OperationFailed = ErrorInputMethod | 0x0010,
+            OutOfMemory = Tizen.Internals.Errors.ErrorCode.OutOfMemory
         };
 
         [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
index 82153a7..5599186 100755 (executable)
@@ -34,11 +34,17 @@ namespace Tizen.Uix.InputMethod
             _realHandle = _handle;
         }
 
+        /// <summary>
+        /// This API creates handle for editor window.
+        /// </summary>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
             return _handle;
         }
 
+        /// <summary>
+        /// This API gets handle for editor window.
+        /// </summary>
         public IntPtr GetHandle()
         {
             return _handle;
index 532f3a4..3aef83b 100755 (executable)
@@ -24,7 +24,7 @@ namespace Tizen.Uix.InputMethod
 {
     /// <summary>
     /// Enumeration of the key codes.
-    /// If keycode & 0xff000000 == 0x01000000 then this key code is directly encoded 24-bit UCS character.The UCS value is keycode & 0x00ffffff.
+    /// If keycode &amp; 0xff000000 == 0x01000000 then this key code is directly encoded 24-bit UCS character.The UCS value is keycode &amp; 0x00ffffff.
     /// Defines the list of keys supported by the system.Note that certain keys may not be available on all devices.
     /// </summary>
     public enum KeyCode
@@ -1034,6 +1034,9 @@ namespace Tizen.Uix.InputMethod
                 private set;
             }
 
+            /// <summary>
+            /// compare whether ContextId are equal
+            /// </summary>
             public bool Equals(ContextId other)
             {
                 return this.Id == other.Id;