diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-01-01 17:16:46 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-01-10 12:40:31 -0800 |
commit | d2741c0ab9a7fac6d5cbbdac5dbc2576cb779769 (patch) | |
tree | 0f39d10e56b11794bd6b3df8686c2c9320667c02 | |
parent | 342c8314386c4724cd4a3b78fa44874513a04e34 (diff) |
Use 73, not 73.0f, for uniformity.
-rw-r--r-- | MobileCydia.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 8842b13..b8a174b 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -5664,7 +5664,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { list_ = [[UITableView alloc] initWithFrame:[self bounds] style:UITableViewStylePlain]; [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; - [list_ setRowHeight:73.0f]; + [list_ setRowHeight:73]; [self addSubview:list_]; [list_ setDataSource:self]; @@ -7533,7 +7533,7 @@ freeing the view controllers on tab change */ list_ = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain]; [list_ setAutoresizingMask:UIViewAutoresizingFlexibleBoth]; - [list_ setRowHeight:73.0f]; + [list_ setRowHeight:73]; [[self view] addSubview:list_]; [list_ setDataSource:self]; |