diff options
author | Grant Paul <chpwn@chpwn.com> | 2011-01-26 18:44:41 -0800 |
---|---|---|
committer | Grant Paul <chpwn@chpwn.com> | 2011-01-26 18:44:41 -0800 |
commit | ea3bb538405a55030753b8345bdf230896ffaed9 (patch) | |
tree | 3cbaef565a4e83c1958aad54f55e30c8e3822edd /MobileCydia.mm | |
parent | f5a1751757734cc1e62f5182cea0edc08c32f956 (diff) |
Make ChangesController more like any other controller, i.e., use -initWithDatabase: and -setDelegate: instead of the unique -initWithDatabase:delegate:.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 5600c6c..e3c9d9c 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -6864,8 +6864,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { BOOL hasSentFirstLoad_; } -- (id) initWithDatabase:(Database *)database delegate:(id)delegate; -- (void) reloadData; +- (id) initWithDatabase:(Database *)database; @end @@ -6954,13 +6953,12 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { - (NSString *) title { return UCLocalize("CHANGES"); } -- (id) initWithDatabase:(Database *)database delegate:(id)delegate { +- (id) initWithDatabase:(Database *)database { if ((self = [super init]) != nil) { database_ = database; [[self navigationItem] setTitle:UCLocalize("CHANGES")]; packages_ = CFArrayCreateMutable(kCFAllocatorDefault, 0, NULL); - sections_ = [[NSMutableArray arrayWithCapacity:16] retain]; list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain]; @@ -6970,8 +6968,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [list_ setDataSource:self]; [list_ setDelegate:self]; - - delegate_ = delegate; } return self; } @@ -8576,7 +8572,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { else if (index == 1) root = [[[SectionsController alloc] initWithDatabase:database_] autorelease]; else if (index == 2) - root = [[[ChangesController alloc] initWithDatabase:database_ delegate:self] autorelease]; + root = [[[ChangesController alloc] initWithDatabase:database_] autorelease]; if (IsWildcat_) { if (index == 3) @@ -8796,7 +8792,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } if ([base isEqualToString:@"changes"]) { - controller = [[[ChangesController alloc] initWithDatabase:database_ delegate:self] autorelease]; + controller = [[[ChangesController alloc] initWithDatabase:database_] autorelease]; } if ([base isEqualToString:@"installed"]) { |