diff --git a/macosx/Controller.h b/macosx/Controller.h index ba87100ba..a0435b04d 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -72,7 +72,7 @@ NSTimer * fTimer; NSTimer * fAutoImportTimer; - NSArray * fAutoImportedNames; + NSArray * fAutoImportedNames; BOOL fHasGrowl; Badger * fBadger; @@ -136,7 +136,7 @@ - (void) ratioGlobalChange: (NSNotification *) notification; - (void) checkWaitingForStopped: (NSNotification *) notification; -- (void) checkWaitingForFinished: (Torrent *) finishedTorrent; +- (void) checkToStartWaiting: (Torrent *) finishedTorrent; - (void) torrentStartSettingChange: (NSNotification *) notification; - (void) globalStartSettingChange: (NSNotification *) notification; diff --git a/macosx/Controller.m b/macosx/Controller.m index b2f1c4ff9..056a7ba57 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -783,7 +783,7 @@ static void sleepCallBack(void * controller, io_service_t y, if ([torrent justFinished]) { - [self checkWaitingForFinished: torrent]; + [self checkToStartWaiting: torrent]; //notifications [self notifyGrowl: @"Download Complete" message: [[torrent name] stringByAppendingString: @@ -1004,10 +1004,10 @@ static void sleepCallBack(void * controller, io_service_t y, - (void) checkWaitingForStopped: (NSNotification *) notification { - [self checkWaitingForFinished: [notification object]]; + [self checkToStartWaiting: [notification object]]; } -- (void) checkWaitingForFinished: (Torrent *) finishedTorrent +- (void) checkToStartWaiting: (Torrent *) finishedTorrent { //don't try to start a transfer if there should be none waiting if (![[fDefaults stringForKey: @"StartSetting"] isEqualToString: @"Wait"]) diff --git a/macosx/English.lproj/PrefsWindow.nib/keyedobjects.nib b/macosx/English.lproj/PrefsWindow.nib/keyedobjects.nib index ad557877c..1d31f9af1 100644 Binary files a/macosx/English.lproj/PrefsWindow.nib/keyedobjects.nib and b/macosx/English.lproj/PrefsWindow.nib/keyedobjects.nib differ