From 4f2a74aeb86e2d754a004fee773e39622b003ca7 Mon Sep 17 00:00:00 2001 From: Surbhi Gupta <35525588+surbhig12@users.noreply.github.com> Date: Wed, 12 Sep 2018 07:44:57 +0530 Subject: [PATCH] English review: InputMethodEditor (#416) * English review: InputMethodEditor * Update InputMethodEditor.cs Reviewed the file again based on comments received in other files. --- .../Tizen.Uix.InputMethod/InputMethodEditor.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Tizen.Uix.InputMethod/Tizen.Uix.InputMethod/InputMethodEditor.cs b/src/Tizen.Uix.InputMethod/Tizen.Uix.InputMethod/InputMethodEditor.cs index 611d923..3039dae 100755 --- a/src/Tizen.Uix.InputMethod/Tizen.Uix.InputMethod/InputMethodEditor.cs +++ b/src/Tizen.Uix.InputMethod/Tizen.Uix.InputMethod/InputMethodEditor.cs @@ -1990,7 +1990,7 @@ namespace Tizen.Uix.InputMethod } /// - /// Sends the request to hide IME. + /// Sends the request to hide the IME. /// /// /// http://tizen.org/privilege/ime @@ -1998,7 +1998,7 @@ namespace Tizen.Uix.InputMethod /// /// This can occur due to the following reasons: /// 1) The application does not have the privilege to call this function. - /// 2) The IME main loop isn't started yet. + /// 2) The IME main loop has not yet started. /// /// 5 public static void RequestHide() @@ -2068,16 +2068,16 @@ namespace Tizen.Uix.InputMethod } /// - /// Sets the floating mode or not. + /// Sets the floating mode to on or off. /// /// /// http://tizen.org/privilege/ime /// - /// The floating mode On/Off. + /// true to set the floating mode to on and false to set it to off. /// /// This can occur due to the following reasons: /// 1) The application does not have the privilege to call this function. - /// 2) The IME main loop isn't started yet. + /// 2) The IME main loop has not yet started. /// /// 5 public static void SetFloatingMode(bool floating_mode) @@ -2102,7 +2102,7 @@ namespace Tizen.Uix.InputMethod /// /// This can occur due to the following reasons: /// 1) The application does not have the privilege to call this function. - /// 2) The IME main loop isn't started yet. + /// 2) The IME main loop has not yet started. /// /// 5 public static void SetFloatingDragStart() @@ -2116,7 +2116,7 @@ namespace Tizen.Uix.InputMethod } /// - /// Disallows the movement of the floating input panel window with the mouse pointer when the mouse is pressed. + /// Does not allow the movement of the floating input panel window with the mouse pointer when the mouse is pressed. /// /// /// http://tizen.org/privilege/ime @@ -2127,7 +2127,7 @@ namespace Tizen.Uix.InputMethod /// /// This can occur due to the following reasons: /// 1) The application does not have the privilege to call this function. - /// 2) The IME main loop isn't started yet. + /// 2) The IME main loop has not yet started. /// /// 5 public static void SetFloatingDragEnd() -- 2.7.4