From d2741c0ab9a7fac6d5cbbdac5dbc2576cb779769 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Sat, 1 Jan 2011 17:16:46 -0800 Subject: [PATCH] Use 73, not 73.0f, for uniformity. --- MobileCydia.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]; -- 2.45.2