- Timestamp:
- Aug 21, 2006, 4:17:36 PM (16 years ago)
- Location:
- trunk/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/InfoWindowController.m
r802 r805 476 476 return [[NSWorkspace sharedWorkspace] iconForFileType: [[file objectForKey: @"Name"] pathExtension]]; 477 477 else if ([ident isEqualToString: @"Size"]) 478 return [NSString stringForFileSize: [[file objectForKey: @"Size"] unsigned IntValue]];478 return [NSString stringForFileSize: [[file objectForKey: @"Size"] unsignedLongLongValue]]; 479 479 else 480 480 return [[file objectForKey: @"Name"] lastPathComponent]; -
trunk/macosx/Torrent.m
r799 r805 38 38 @end 39 39 40 41 40 @implementation Torrent 42 41 … … 639 638 [files addObject: [NSDictionary dictionaryWithObjectsAndKeys: [[self downloadFolder] 640 639 stringByAppendingPathComponent: [NSString stringWithUTF8String: file.name]], @"Name", 641 [NSNumber numberWithUnsigned Int: file.length], @"Size", nil]];640 [NSNumber numberWithUnsignedLongLong: file.length], @"Size", nil]]; 642 641 } 643 642
Note: See TracChangeset
for help on using the changeset viewer.