You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2012/05/08 21:53:39 UTC

[1/5] ios commit: fixing a bad method invokation in new rewrite of geo

Updated Branches:
  refs/heads/master c18663f27 -> 6c458353b


fixing a bad method invokation in new rewrite of geo


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/6c458353
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/6c458353
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/6c458353

Branch: refs/heads/master
Commit: 6c458353b63da276eba873661d77b9168c6cecb8
Parents: f6985a3
Author: Fil Maj <ma...@gmail.com>
Authored: Tue May 8 12:32:07 2012 -0700
Committer: Fil Maj <ma...@gmail.com>
Committed: Tue May 8 12:55:55 2012 -0700

----------------------------------------------------------------------
 CordovaLib/Classes/CDVLocation.m |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/6c458353/CordovaLib/Classes/CDVLocation.m
----------------------------------------------------------------------
diff --git a/CordovaLib/Classes/CDVLocation.m b/CordovaLib/Classes/CDVLocation.m
index 6e890c2..e893771 100755
--- a/CordovaLib/Classes/CDVLocation.m
+++ b/CordovaLib/Classes/CDVLocation.m
@@ -252,7 +252,7 @@
         }
     } else {
         // No callbacks waiting on us anymore, turn off listening.
-        [self stopLocation];
+        [self _stopLocation];
     }
 }