Changeset 3613
- Timestamp:
- Oct 28, 2007, 4:35:49 AM (15 years ago)
- Location:
- trunk/macosx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r3588 r3613 580 580 //clear badge 581 581 [fBadger clearBadge]; 582 582 583 583 //wait for running transfers to stop and for NAT to be disabled (5 second timeout) 584 584 NSDate * start = [NSDate date]; 585 while ([start timeIntervalSinceNow] >= -5.0 586 && (tr_torrentCount(fLib) > 0 || tr_handleStatus(fLib)->natTraversalStatus != TR_NAT_TRAVERSAL_DISABLED)) 585 586 tr_close(fLib); 587 588 while ([start timeIntervalSinceNow] >= -5.0 && tr_handleStatus(fLib)->natTraversalStatus != TR_NAT_TRAVERSAL_DISABLED) 587 589 usleep(100000); 588 590 … … 604 606 [fPendingTorrentDownloads release]; 605 607 [fTempTorrentFiles release]; 606 607 tr_close(fLib);608 608 } 609 609 -
trunk/macosx/Defaults.plist
r3224 r3613 46 46 <string>Constant</string> 47 47 <key>DownloadFolder</key> 48 <string>~/D esktop</string>48 <string>~/Downloads</string> 49 49 <key>DownloadLimit</key> 50 50 <integer>100</integer> … … 60 60 <string>Name</string> 61 61 <key>IncompleteDownloadFolder</key> 62 <string>~/D esktop</string>62 <string>~/Downloads</string> 63 63 <key>InfoVisible</key> 64 64 <false/> … … 69 69 <key>MoveChoice</key> 70 70 <string>Constant</string> 71 <key>MoveFolder</key>72 <string>~/Desktop</string>73 71 <key>NatTraversal</key> 74 72 <true/> -
trunk/macosx/PeerProgressIndicatorCell.m
r3608 r3613 27 27 @implementation PeerProgressIndicatorCell 28 28 29 #warning exists in 10.530 29 - (BOOL) hidden 31 30 {
Note: See TracChangeset
for help on using the changeset viewer.