diff options
author | Grant Paul <chpwn@chpwn.com> | 2010-12-11 17:01:57 -0800 |
---|---|---|
committer | Grant Paul <chpwn@chpwn.com> | 2010-12-11 17:01:57 -0800 |
commit | e7b68593234b4d0d1f9a411a4711646e9f1450a5 (patch) | |
tree | 7c3ee0180c19186a86c5934d25a32aab2b6cc46e /MobileCydia.mm | |
parent | 275fdcc99d73ae5b70046c82a53704a9d74b401f (diff) |
Renamed SourceTable to SourceController, makes much more sense now.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index f17019c..b955c08 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -5844,7 +5844,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { @end /* }}} */ /* Source Table {{{ */ -@interface SourceTable : CYViewController < +@interface SourceController : CYViewController < UITableViewDataSource, UITableViewDelegate > { @@ -5872,7 +5872,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { @end -@implementation SourceTable +@implementation SourceController - (void) _releaseConnection:(NSURLConnection *)connection { if (connection != nil) { @@ -8007,7 +8007,7 @@ typedef enum { ChangesController *changes_; ManageController *manage_; SearchController *search_; - SourceTable *sources_; + SourceController *sources_; InstalledController *installed_; id queueDelegate_; @@ -8437,9 +8437,9 @@ static _finline void _setHomePage(Cydia *self) { return search_; } -- (SourceTable *) sourcesController { +- (SourceController *) sourcesController { if (sources_ == nil) - sources_ = [[SourceTable alloc] initWithDatabase:database_]; + sources_ = [[SourceController alloc] initWithDatabase:database_]; return sources_; } @@ -8672,7 +8672,7 @@ static _finline void _setHomePage(Cydia *self) { /*else if ([path isEqualToString:@"/add-source"]) return [[[AddSourceController alloc] initWithDatabase:database_] autorelease];*/ else if ([path isEqualToString:@"/sources"]) - return [[[SourceTable alloc] initWithDatabase:database_] autorelease]; + return [[[SourceController alloc] initWithDatabase:database_] autorelease]; else if ([path isEqualToString:@"/packages"]) return [[[InstalledController alloc] initWithDatabase:database_] autorelease]; else if ([path hasPrefix:@"/url/"]) |