From: Jay Freeman (saurik) Date: Sun, 2 Jan 2011 01:16:46 +0000 (-0800) Subject: Use 73, not 73.0f, for uniformity. X-Git-Tag: v1.1.0%b1~381 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/d2741c0ab9a7fac6d5cbbdac5dbc2576cb779769?hp=342c8314386c4724cd4a3b78fa44874513a04e34 Use 73, not 73.0f, for uniformity. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 8842b13c..b8a174bf 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];