summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHobum (Vincent) Kwon <hobum.kwon@samsung.com>2017-07-04 09:09:31 +0900
committerHobum (Vincent) Kwon <hobum.kwon@samsung.com>2017-07-04 09:14:34 +0900
commitcf269f636fc9e7e90428bf84532a62b65bbe7c02 (patch)
treeb665d5581de9abf92cf48509807bdfc0a4b8fe84
parent8f79da30509f7561d685d55d4e81961faa79f959 (diff)
downloadelm-sharp-cf269f636fc9e7e90428bf84532a62b65bbe7c02.tar.gz
elm-sharp-cf269f636fc9e7e90428bf84532a62b65bbe7c02.tar.bz2
elm-sharp-cf269f636fc9e7e90428bf84532a62b65bbe7c02.zip
Fix wrong method name (amimator->animator)
Change-Id: Ia1a190354ee3771f3925f23a401c64e05f9b7dc2
-rw-r--r--ElmSharp.Test/TC/PerformanceTest.cs2
-rwxr-xr-xElmSharp/ElmSharp/EcoreAnimator.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/ElmSharp.Test/TC/PerformanceTest.cs b/ElmSharp.Test/TC/PerformanceTest.cs
index 2640b33..b5bb77e 100644
--- a/ElmSharp.Test/TC/PerformanceTest.cs
+++ b/ElmSharp.Test/TC/PerformanceTest.cs
@@ -179,7 +179,7 @@ namespace ElmSharp.Test
private void List_ScrollAnimationStarted(object sender, EventArgs e)
{
_ecoreCount = 0;
- _anim = EcoreAnimator.AddAmimator(OnEcoreCheck);
+ _anim = EcoreAnimator.AddAnimator(OnEcoreCheck);
list.RenderPost += List_RenderPostFrame;
}
diff --git a/ElmSharp/ElmSharp/EcoreAnimator.cs b/ElmSharp/ElmSharp/EcoreAnimator.cs
index a6b7992..64a548d 100755
--- a/ElmSharp/ElmSharp/EcoreAnimator.cs
+++ b/ElmSharp/ElmSharp/EcoreAnimator.cs
@@ -49,7 +49,7 @@ namespace ElmSharp
/// </summary>
/// <param name="handler">The function to call when it ticks off</param>
/// <returns>A handle to the new animator</returns>
- public static IntPtr AddAmimator(Func<bool> handler)
+ public static IntPtr AddAnimator(Func<bool> handler)
{
int id = RegistHandler(handler);
return Interop.Ecore.ecore_animator_add(_nativeHandler, (IntPtr)id);