You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2013/03/14 23:30:43 UTC

[4/5] wp7 commit: Invokation->Invocation

Invokation->Invocation


Project: http://git-wip-us.apache.org/repos/asf/cordova-wp7/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-wp7/commit/1607639b
Tree: http://git-wip-us.apache.org/repos/asf/cordova-wp7/tree/1607639b
Diff: http://git-wip-us.apache.org/repos/asf/cordova-wp7/diff/1607639b

Branch: refs/heads/master
Commit: 1607639b75549d18224b0b3b3f5da1d5cb995605
Parents: acdef7a
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Thu Mar 14 15:25:42 2013 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Thu Mar 14 15:25:42 2013 -0700

----------------------------------------------------------------------
 templates/standalone/cordovalib/NativeExecution.cs |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp7/blob/1607639b/templates/standalone/cordovalib/NativeExecution.cs
----------------------------------------------------------------------
diff --git a/templates/standalone/cordovalib/NativeExecution.cs b/templates/standalone/cordovalib/NativeExecution.cs
index 8d56225..25efd01 100644
--- a/templates/standalone/cordovalib/NativeExecution.cs
+++ b/templates/standalone/cordovalib/NativeExecution.cs
@@ -108,7 +108,7 @@ namespace WPCordovaClassLib.Cordova
 
                 bc.OnCustomScript += OnCustomScriptHandler;
 
-                ThreadStart methodInvokation = () =>
+                ThreadStart methodInvocation = () =>
                 {
 
                     try
@@ -133,11 +133,11 @@ namespace WPCordovaClassLib.Cordova
                 {
                     // Due to some issues with the IsolatedStorage in current version of WP8 SDK we have to run all File Api commands synchronously.
                     // TODO: test this in WP8 RTM
-                    methodInvokation.Invoke();
+                    methodInvocation.Invoke();
                 }
                 else
                 {
-                    new Thread(methodInvokation).Start();
+                    new Thread(methodInvocation).Start();
                 }