Fix to follow dotnet rules (#639)
authorInhong <tukkong123@naver.com>
Tue, 8 Jan 2019 04:30:04 +0000 (13:30 +0900)
committerGitHub <noreply@github.com>
Tue, 8 Jan 2019 04:30:04 +0000 (13:30 +0900)
src/Tizen.Uix.InputMethod/Interop/Interop.InputMethod.cs
src/Tizen.Uix.InputMethod/Tizen.Uix.InputMethod/InputMethodEditor.cs

index 9b373f3..92e528d 100755 (executable)
@@ -262,7 +262,7 @@ internal static partial class Interop
         internal static extern ErrorCode ImeDeviceInfoGetSubclass(IntPtr dev_info, out DeviceSubclass devSubClass);
 
         [DllImport(Libraries.InputMethod, EntryPoint = "ime_set_floating_mode")]
-        internal static extern ErrorCode ImeSetFloatingMode(bool floating_mode);
+        internal static extern ErrorCode ImeSetFloatingMode(bool floatingMode);
 
         [DllImport(Libraries.InputMethod, EntryPoint = "ime_set_floating_drag_start")]
         internal static extern ErrorCode ImeSetFloatingDragStart();
index fc87e0c..2277209 100755 (executable)
@@ -2073,16 +2073,16 @@ namespace Tizen.Uix.InputMethod
         /// <privilege>
         /// http://tizen.org/privilege/ime
         /// </privilege>
-        /// <param name="floating_mode"><c>true</c> to set the floating mode to on and <c>false</c> to set it to off.</param>
+        /// <param name="floatingMode"><c>true</c> to set the floating mode to on and <c>false</c> to set it to off.</param>
         /// <exception cref="InvalidOperationException">
         /// 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 has not started yet.
         /// </exception>
         /// <since_tizen> 5 </since_tizen>
-        public static void SetFloatingMode(bool floating_mode)
+        public static void SetFloatingMode(bool floatingMode)
         {
-            ErrorCode error = ImeSetFloatingMode(floating_mode);
+            ErrorCode error = ImeSetFloatingMode(floatingMode);
             if (error != ErrorCode.None)
             {
                 Log.Error(LogTag, "SetFloatingMode Failed with error " + error);