summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeungkeun Lee <sngn.lee@samsung.com>2017-06-08 11:28:47 +0000
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>2017-06-08 11:28:47 +0000
commita58b15bbaddda1277b1afcab3cef41095bd44ba9 (patch)
tree7d47cc866d2904c748a38535f9a711ae6f5e3194
parent7aa815a29497cd762cd23fbb8d58e33a421fe692 (diff)
parent6b464ce754d4f7f89a50a9a423c179390b338435 (diff)
downloadelm-sharp-a58b15bbaddda1277b1afcab3cef41095bd44ba9.tar.gz
elm-sharp-a58b15bbaddda1277b1afcab3cef41095bd44ba9.tar.bz2
elm-sharp-a58b15bbaddda1277b1afcab3cef41095bd44ba9.zip
Merge "Fix build break" into tizen
-rwxr-xr-x[-rw-r--r--]ElmSharp/ElmSharp/Slider.cs25
-rwxr-xr-x[-rw-r--r--]ElmSharp/Interop/Interop.Elementary.Slider.cs6
2 files changed, 1 insertions, 30 deletions
diff --git a/ElmSharp/ElmSharp/Slider.cs b/ElmSharp/ElmSharp/Slider.cs
index 17f1479..3122a55 100644..100755
--- a/ElmSharp/ElmSharp/Slider.cs
+++ b/ElmSharp/ElmSharp/Slider.cs
@@ -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
diff --git a/ElmSharp/Interop/Interop.Elementary.Slider.cs b/ElmSharp/Interop/Interop.Elementary.Slider.cs
index 9e351c6..6f30f31 100644..100755
--- a/ElmSharp/Interop/Interop.Elementary.Slider.cs
+++ b/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)]