summaryrefslogtreecommitdiff
path: root/ElmSharp
diff options
context:
space:
mode:
authorSidharth Gupta <sid92.gupta@samsung.com>2016-12-01 11:43:49 +0900
committerSidharth Gupta <sid92.gupta@samsung.com>2016-12-01 11:43:49 +0900
commitb7212cecf53eb96613cf15d830ff67a92fc88352 (patch)
treeca47b6b20535be34941a9ed885d0206721f4c8f4 /ElmSharp
parent5b90e29a85421cff0cb0cd13f941181ee37896d3 (diff)
downloadelm-sharp-b7212cecf53eb96613cf15d830ff67a92fc88352.tar.gz
elm-sharp-b7212cecf53eb96613cf15d830ff67a92fc88352.tar.bz2
elm-sharp-b7212cecf53eb96613cf15d830ff67a92fc88352.zip
Mark StopPluse Obsolete and add StopPulse in ProgressBar
Minor version updated as well. Signed-off-by: Sidharth Gupta <sid92.gupta@samsung.com> Change-Id: I27b455afd71a03be8e388381a0cf8626ac344ea9
Diffstat (limited to 'ElmSharp')
-rw-r--r--ElmSharp/ElmSharp/ProgressBar.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/ElmSharp/ElmSharp/ProgressBar.cs b/ElmSharp/ElmSharp/ProgressBar.cs
index de66329..f72c6ef 100644
--- a/ElmSharp/ElmSharp/ProgressBar.cs
+++ b/ElmSharp/ElmSharp/ProgressBar.cs
@@ -110,11 +110,17 @@ namespace ElmSharp
Interop.Elementary.elm_progressbar_pulse(Handle, true);
}
+ [Obsolete("use StopPulse instead")]
public void StopPluse()
{
Interop.Elementary.elm_progressbar_pulse(Handle, false);
}
+ public void StopPulse()
+ {
+ Interop.Elementary.elm_progressbar_pulse(Handle, false);
+ }
+
protected override IntPtr CreateHandle(EvasObject parent)
{
return Interop.Elementary.elm_progressbar_add(parent);