]> git.saurik.com Git - cydia.git/commitdiff
Remove obsolete CYNavigationController::database_.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 28 Feb 2011 13:29:56 +0000 (05:29 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 7 Mar 2011 10:41:26 +0000 (02:41 -0800)
MobileCydia.mm

index f5ced7bf3615fee57f4c470df17597dbd0bf3b11..b5f9e9392ce219b4c87ec00d3dffcf623b114071 100644 (file)
@@ -6822,12 +6822,10 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
 
 /* Cydia Navigation Controller Interface {{{ */
 @interface CYNavigationController : UINavigationController {
-    _transient Database *database_;
     _transient id<UINavigationControllerDelegate> delegate_;
 }
 
 - (NSArray *) navigationURLCollection;
-- (id) initWithDatabase:(Database *)database;
 - (void) unloadData:(BOOL)selected;
 
 @end
@@ -7158,12 +7156,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
     delegate_ = delegate;
 }
 
-- (id) initWithDatabase:(Database *)database {
-    if ((self = [super init]) != nil) {
-        database_ = database;
-    } return self;
-}
-
 @end
 /* }}} */
 
@@ -9780,7 +9772,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
 
     NSMutableArray *controllers([NSMutableArray array]);
     for (UITabBarItem *item in items) {
-        CYNavigationController *controller([[[CYNavigationController alloc] initWithDatabase:database_] autorelease]);
+        CYNavigationController *controller([[[CYNavigationController alloc] init] autorelease]);
         [controller setTabBarItem:item];
         [controllers addObject:controller];
     }