Changeset 6048
- Timestamp:
- Jun 5, 2008, 3:22:18 PM (14 years ago)
- Location:
- trunk/macosx
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/InfoWindowController.m
r6047 r6048 1554 1554 [fTrackers removeObjectsAtIndexes: indexes]; 1555 1555 1556 if (![torrent updateAllTrackersForRemove: fTrackers]) 1557 NSBeep(); 1558 else 1559 [fTrackerTable deselectAll: self]; 1556 [torrent updateAllTrackersForRemove: fTrackers]; 1557 [fTrackerTable deselectAll: self]; 1560 1558 1561 1559 //reset table with either new or old value -
trunk/macosx/PrefsController.m
r6047 r6048 811 811 812 812 //download directory 813 #warning missing! 813 NSString * downloadLocation = [[NSString stringWithUTF8String: tr_sessionGetDownloadDir(fHandle)] stringByStandardizingPath]; 814 [fDefaults setObject: downloadLocation forKey: @"DownloadFolder"]; 814 815 815 816 //peers … … 850 851 { 851 852 //encryption handled by bindings 853 854 //download directory handled by bindings 852 855 853 856 [fPeersGlobalField setIntValue: peersTotal]; -
trunk/macosx/Torrent.h
r6019 r6048 152 152 - (NSMutableArray *) allTrackers: (BOOL) separators; 153 153 - (BOOL) updateAllTrackersForAdd: (NSMutableArray *) trackers; 154 - ( BOOL) updateAllTrackersForRemove: (NSMutableArray *) trackers;154 - (void) updateAllTrackersForRemove: (NSMutableArray *) trackers; 155 155 - (BOOL) hasAddedTrackers; 156 156 -
trunk/macosx/Torrent.m
r6047 r6048 820 820 } 821 821 822 - ( BOOL) updateAllTrackersForRemove: (NSMutableArray *) trackers822 - (void) updateAllTrackersForRemove: (NSMutableArray *) trackers 823 823 { 824 824 //check if no user-added groups … … 827 827 828 828 [self updateAllTrackers: trackers]; 829 830 return YES;831 829 } 832 830
Note: See TracChangeset
for help on using the changeset viewer.