Fix build break
authorsung-su.kim <sung-su.kim@samsung.com>
Thu, 8 Jun 2017 11:25:29 +0000 (20:25 +0900)
committersung-su.kim <sung-su.kim@samsung.com>
Thu, 8 Jun 2017 11:26:28 +0000 (20:26 +0900)
- Remove duplicated interop/enum

Change-Id: I1c8efeb2734570907faeef63770e8b384b668c11

src/ElmSharp/ElmSharp/Slider.cs [changed mode: 0644->0755]
src/ElmSharp/Interop/Interop.Elementary.Slider.cs [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 17f1479..3122a55
@@ -18,29 +18,6 @@ using System;
 
 namespace ElmSharp
 {
-    public enum SliderIndicatorVisibleMode
-    {
-        /// <summary>
-        /// show indicator on mouse down or change in slider value.
-        /// </summary>
-        Default,
-
-        /// <summary>
-        /// Always show the indicator.
-        /// </summary>
-        Always,
-
-        /// <summary>
-        /// Show the indicator on focus.
-        /// </summary>
-        OnFocus,
-
-        /// <summary>
-        /// Never show the indicator.
-        /// </summary>
-        None
-    }
-
     /// <summary>
     /// Enumeration for the Slider's indicator visiblity mode.
     /// </summary>
@@ -372,4 +349,4 @@ namespace ElmSharp
             return handle;
         }
     }
-}
+}
\ No newline at end of file
old mode 100644 (file)
new mode 100755 (executable)
index 9e351c6..6f30f31
@@ -39,12 +39,6 @@ internal static partial class Interop
         internal static extern bool elm_slider_indicator_show_get(IntPtr obj);
 
         [DllImport(Libraries.Elementary)]
-        internal static extern void elm_slider_indicator_visible_mode_set(IntPtr obj, Elm_Slider_Indicator_Visible_Mode mode);
-
-        [DllImport(Libraries.Elementary)]
-        internal static extern Elm_Slider_Indicator_Visible_Mode elm_slider_indicator_visible_mode_get(IntPtr obj);
-
-        [DllImport(Libraries.Elementary)]
         internal static extern void elm_slider_indicator_show_on_focus_set(IntPtr obj, bool focus);
 
         [DllImport(Libraries.Elementary)]