diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-01-01 17:14:22 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-01-10 12:40:31 -0800 |
commit | 342c8314386c4724cd4a3b78fa44874513a04e34 (patch) | |
tree | 8c889df54e289729e3816333a7482e35c02e8996 /MobileCydia.mm | |
parent | 9c8730d27cb4ca97a5034de527be90c975144c5e (diff) |
Remove (unused) +[PackageCell heightForPackage:].
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 79b3495..8842b13 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -4887,7 +4887,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { - (PackageCell *) init; - (void) setPackage:(Package *)package; -+ (int) heightForPackage:(Package *)package; - (void) drawContentRect:(CGRect)rect; @end @@ -5067,10 +5066,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [placard_ drawAtPoint:CGPointMake(width - 52, 9)]; } -+ (int) heightForPackage:(Package *)package { - return 73; -} - @end /* }}} */ /* Section Cell {{{ */ @@ -5632,10 +5627,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [list_ deselectRowAtIndexPath:[list_ indexPathForSelectedRow] animated:animated]; } -/*- (CGFloat) tableView:(UITableView *)table heightForRowAtIndexPath:(NSIndexPath *)path { - return [PackageCell heightForPackage:[self packageAtIndexPath:path]]; -}*/ - - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path { Package *package([self packageAtIndexPath:path]); package = [database_ packageWithName:[package id]]; @@ -7511,10 +7502,6 @@ freeing the view controllers on tab change */ return cell; } -/*- (CGFloat) tableView:(UITableView *)table heightForRowAtIndexPath:(NSIndexPath *)path { - return [PackageCell heightForPackage:[self packageAtIndexPath:path]]; -}*/ - - (NSIndexPath *) tableView:(UITableView *)table willSelectRowAtIndexPath:(NSIndexPath *)path { Package *package([self packageAtIndexPath:path]); PackageController *view([delegate_ packageController]); |