From: sung-su.kim Date: Thu, 8 Jun 2017 11:25:29 +0000 (+0900) Subject: Fix build break X-Git-Tag: submit/trunk/20170823.075128~110^2~69^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=532d53702da8c508469005c1b88d3e6e684097c6;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Fix build break - Remove duplicated interop/enum Change-Id: I1c8efeb2734570907faeef63770e8b384b668c11 --- 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)]