summaryrefslogtreecommitdiff
path: root/ElmSharp
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 /ElmSharp
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
Diffstat (limited to 'ElmSharp')
-rwxr-xr-xElmSharp/ElmSharp/EcoreAnimator.cs2
1 files changed, 1 insertions, 1 deletions
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);