You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2013/01/10 23:49:33 UTC

ios commit: [CB-2193] Remove deprecated - iOS - CDVViewController invokeString property

Updated Branches:
  refs/heads/master dfe407aad -> 4464c75c3


[CB-2193] Remove deprecated - iOS - CDVViewController invokeString property


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

Branch: refs/heads/master
Commit: 4464c75c31096aa99daabdb4ee12b3a864ea3ac6
Parents: dfe407a
Author: Shazron Abdullah <sh...@apache.org>
Authored: Thu Jan 10 14:48:17 2013 -0800
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Thu Jan 10 14:48:28 2013 -0800

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


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/4464c75c/CordovaLib/Classes/CDVViewController.h
----------------------------------------------------------------------
diff --git a/CordovaLib/Classes/CDVViewController.h b/CordovaLib/Classes/CDVViewController.h
index 8318398..7585733 100644
--- a/CordovaLib/Classes/CDVViewController.h
+++ b/CordovaLib/Classes/CDVViewController.h
@@ -45,7 +45,6 @@
 @property (nonatomic, readonly, strong) NSXMLParser* configParser;
 @property (nonatomic, readonly, strong) CDVWhitelist* whitelist; // readonly for public
 @property (nonatomic, readonly, assign) BOOL loadFromString;
-@property (nonatomic, readwrite, copy)NSString * invokeString CDV_DEPRECATED(2.0, "Use window.handleOpenURL(url instead. It is called when the app is launched through a custom scheme url.");
 
 @property (nonatomic, readwrite, assign) BOOL useSplashScreen;
 @property (nonatomic, readonly, strong) IBOutlet UIActivityIndicatorView* activityView;

http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/4464c75c/CordovaLib/Classes/CDVViewController.m
----------------------------------------------------------------------
diff --git a/CordovaLib/Classes/CDVViewController.m b/CordovaLib/Classes/CDVViewController.m
index 7491111..d27211e 100644
--- a/CordovaLib/Classes/CDVViewController.m
+++ b/CordovaLib/Classes/CDVViewController.m
@@ -51,7 +51,7 @@ static NSString* gOriginalUserAgent = nil;
 @synthesize pluginObjects, pluginsMap, whitelist;
 @synthesize configParser, settings, loadFromString;
 @synthesize imageView, activityView, useSplashScreen;
-@synthesize wwwFolderName, startPage, invokeString, initialized;
+@synthesize wwwFolderName, startPage, initialized;
 @synthesize commandDelegate = _commandDelegate;
 @synthesize commandQueue = _commandQueue;