Changeset 12773
- Timestamp:
- Aug 28, 2011, 12:07:30 AM (12 years ago)
- Location:
- trunk/macosx
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r12772 r12773 4231 4231 - (void) rpcUpdateQueue 4232 4232 { 4233 NSLog(@"rpcUpdateQueue");4234 4235 4233 for (Torrent * torrent in fTorrents) 4236 4234 [torrent update]; -
trunk/macosx/Torrent.h
r12664 r12773 76 76 - (void) update; 77 77 78 - (void) startTransferIgnoringQueue: (BOOL) ignoreQueue; 78 79 - (void) startTransferNoQueue; 79 80 - (void) startTransfer; -
trunk/macosx/Torrent.m
r12772 r12773 301 301 } 302 302 303 - (void) startTransfer NoQueue303 - (void) startTransferIgnoringQueue: (BOOL) ignoreQueue 304 304 { 305 305 if ([self alertForRemainingDiskSpace]) 306 306 { 307 tr_torrentStartNow(fHandle);307 ignoreQueue ? tr_torrentStartNow(fHandle) : tr_torrentStart(fHandle); 308 308 [self update]; 309 309 … … 313 313 } 314 314 315 #warning merge 315 - (void) startTransferNoQueue 316 { 317 [self startTransferIgnoringQueue: YES]; 318 } 319 316 320 - (void) startTransfer 317 321 { 318 if ([self alertForRemainingDiskSpace]) 319 { 320 tr_torrentStart(fHandle); 321 [self update]; 322 323 //capture, specifically, stop-seeding settings changing to unlimited 324 [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateOptions" object: nil]; 325 } 322 [self startTransferIgnoringQueue: NO]; 326 323 } 327 324 -
trunk/macosx/TorrentCell.m
r12769 r12773 470 470 NSString * actionImageString; 471 471 if (fMouseDownActionButton) 472 #warning we can get rid of th eon 10.7472 #warning we can get rid of this on 10.7 473 473 actionImageString = @"ActionOn.png"; 474 474 else if (!fTracking && fHoverAction)
Note: See TracChangeset
for help on using the changeset viewer.