use "init" instead of "initWithString: @"""

This commit is contained in:
Mitchell Livingston 2007-09-16 16:13:51 +00:00
parent a9d4c96cd4
commit baeca52eed
1 changed files with 5 additions and 5 deletions

View File

@ -279,10 +279,10 @@ static int static_lastid = 0;
[[NSNotificationCenter defaultCenter] postNotificationName: @"TorrentStoppedForRatio" object: self]; [[NSNotificationCenter defaultCenter] postNotificationName: @"TorrentStoppedForRatio" object: self];
} }
NSMutableString * progressString = [[NSMutableString alloc] initWithString: @""], NSMutableString * progressString = [[NSMutableString alloc] init],
* remainingTimeString = [[NSMutableString alloc] initWithString: @""], * remainingTimeString = [[NSMutableString alloc] init],
* statusString = [[NSMutableString alloc] initWithString: @""], * statusString = [[NSMutableString alloc] init],
* shortStatusString = [[NSMutableString alloc] initWithString: @""]; * shortStatusString = [[NSMutableString alloc] init];
if (![self allDownloaded]) if (![self allDownloaded])
[progressString appendFormat: NSLocalizedString(@"%@ of %@ (%.2f%%)", "Torrent -> progress string"), [progressString appendFormat: NSLocalizedString(@"%@ of %@ (%.2f%%)", "Torrent -> progress string"),