Changeset 5573
- Timestamp:
- Apr 9, 2008, 6:40:22 PM (15 years ago)
- Location:
- trunk/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Torrent.m
r5569 r5573 569 569 : [fileManager fileAttributesAtPath: path traverseLink: NO]; 570 570 if (fileAttributes) 571 neededSpace -= [[fileAttributes objectForKey: NSFileSize] unsignedLongLongValue]; 571 { 572 unsigned long long fileSize = [[fileAttributes objectForKey: NSFileSize] unsignedLongLongValue]; 573 if (fileSize < neededSpace) 574 neededSpace -= fileSize; 575 else 576 neededSpace = 0; 577 } 572 578 } 573 579 } -
trunk/macosx/TorrentCell.m
r5459 r5573 498 498 } 499 499 500 #warning alter 500 501 //text color 501 502 NSColor * titleColor, * statusColor;
Note: See TracChangeset
for help on using the changeset viewer.