From: Jay Freeman (saurik) Date: Mon, 28 Feb 2011 13:35:25 +0000 (-0800) Subject: Remove obsolete CYNavigationController::delegate_. X-Git-Tag: v1.1.0%b1~130 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/86916d7b35e413f50d64df0943d31b7c810fc58f Remove obsolete CYNavigationController::delegate_. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index b5f9e939..c4dc0a50 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -6822,7 +6822,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { /* Cydia Navigation Controller Interface {{{ */ @interface CYNavigationController : UINavigationController { - _transient id delegate_; } - (NSArray *) navigationURLCollection; @@ -7152,10 +7151,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [top reloadData]; } -- (void) setDelegate:(id)delegate { - delegate_ = delegate; -} - @end /* }}} */ @@ -9324,7 +9319,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { ConfirmationController *page([[[ConfirmationController alloc] initWithDatabase:database_] autorelease]); [page setDelegate:self]; CYNavigationController *confirm_([[[CYNavigationController alloc] initWithRootViewController:page] autorelease]); - [confirm_ setDelegate:self]; if (IsWildcat_) [confirm_ setModalPresentationStyle:UIModalPresentationFormSheet];