From 532d53702da8c508469005c1b88d3e6e684097c6 Mon Sep 17 00:00:00 2001 From: "sung-su.kim" Date: Thu, 8 Jun 2017 20:25:29 +0900 Subject: [PATCH] Fix build break - Remove duplicated interop/enum Change-Id: I1c8efeb2734570907faeef63770e8b384b668c11 --- src/ElmSharp/ElmSharp/Slider.cs | 25 +---------------------- src/ElmSharp/Interop/Interop.Elementary.Slider.cs | 6 ------ 2 files changed, 1 insertion(+), 30 deletions(-) mode change 100644 => 100755 src/ElmSharp/ElmSharp/Slider.cs mode change 100644 => 100755 src/ElmSharp/Interop/Interop.Elementary.Slider.cs diff --git a/src/ElmSharp/ElmSharp/Slider.cs b/src/ElmSharp/ElmSharp/Slider.cs old mode 100644 new mode 100755 index 17f1479..3122a55 --- a/src/ElmSharp/ElmSharp/Slider.cs +++ b/src/ElmSharp/ElmSharp/Slider.cs @@ -18,29 +18,6 @@ using System; namespace ElmSharp { - public enum SliderIndicatorVisibleMode - { - /// - /// show indicator on mouse down or change in slider value. - /// - Default, - - /// - /// Always show the indicator. - /// - Always, - - /// - /// Show the indicator on focus. - /// - OnFocus, - - /// - /// Never show the indicator. - /// - None - } - /// /// Enumeration for the Slider's indicator visiblity mode. /// @@ -372,4 +349,4 @@ namespace ElmSharp return handle; } } -} +} \ No newline at end of file diff --git a/src/ElmSharp/Interop/Interop.Elementary.Slider.cs b/src/ElmSharp/Interop/Interop.Elementary.Slider.cs old mode 100644 new mode 100755 index 9e351c6..6f30f31 --- a/src/ElmSharp/Interop/Interop.Elementary.Slider.cs +++ b/src/ElmSharp/Interop/Interop.Elementary.Slider.cs @@ -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)] -- 2.7.4