[fTorrents removeObjectsInArray: torrents];
- //for tiger - when 10.5-only repace with NSIntegerMax
- NSInteger lowestOrderValue = INT_MAX;
+ NSInteger lowestOrderValue = NSIntegerMax;
enumerator = [torrents objectEnumerator];
while ((torrent = [enumerator nextObject]))
{
+ (NSString *) timeString: (uint64_t) seconds showSeconds: (BOOL) showSeconds
{
- return [NSString timeString: seconds showSeconds: showSeconds maxFields: UINT_MAX];
+ return [NSString timeString: seconds showSeconds: showSeconds maxFields: NSUIntegerMax];
}
+ (NSString *) timeString: (NSUInteger) seconds showSeconds: (BOOL) showSeconds maxFields: (NSUInteger) max