Changeset 2327
- Timestamp:
- Jul 11, 2007, 1:40:49 AM (16 years ago)
- Location:
- trunk/macosx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r2295 r2327 448 448 fSpeedLimitTimer = [NSTimer scheduledTimerWithTimeInterval: AUTO_SPEED_LIMIT_SECONDS target: self 449 449 selector: @selector(autoSpeedLimit) userInfo: nil repeats: YES]; 450 451 //auto importing452 [self checkAutoImportDirectory];453 450 } 454 451 … … 461 458 andSelector: @selector(handleOpenContentsEvent:replyEvent:) 462 459 forEventClass: kCoreEventClass andEventID: kAEOpenContents]; 460 461 //auto importing 462 [self checkAutoImportDirectory]; 463 463 464 464 //debug warning -
trunk/macosx/InfoWindowController.m
r2318 r2327 930 930 931 931 - (NSString *) outlineView: (NSOutlineView *) outlineView toolTipForCell: (NSCell *) cell rect: (NSRectPointer) rect 932 932 tableColumn: (NSTableColumn *) tableColumn item: (id) item mouseLocation: (NSPoint) mouseLocation 933 933 { 934 934 NSString * ident = [tableColumn identifier]; -
trunk/macosx/Torrent.m
r2318 r2327 1314 1314 - (void) setFileCheckState: (int) state forIndexes: (NSIndexSet *) indexSet 1315 1315 { 1316 #warning multiples 1316 1317 int index; 1317 1318 for (index = [indexSet firstIndex]; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index]) … … 1325 1326 - (void) setFilePriority: (int) priority forIndexes: (NSIndexSet *) indexSet 1326 1327 { 1328 #warning multiples 1327 1329 int index; 1328 1330 for (index = [indexSet firstIndex]; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index])
Note: See TracChangeset
for help on using the changeset viewer.