Changeset 7444
- Timestamp:
- Dec 21, 2008, 2:45:55 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/TorrentCell.m
r7114 r7444 380 380 Torrent * torrent = [self representedObject]; 381 381 382 BOOL minimal = [fDefaults boolForKey: @"SmallView"];382 const BOOL minimal = [fDefaults boolForKey: @"SmallView"]; 383 383 384 384 //group coloring … … 413 413 414 414 //error image 415 BOOL error = [torrent isError];415 const BOOL error = [torrent isError]; 416 416 if (error && !fErrorImage) 417 417 { … … 792 792 else 793 793 { 794 if ([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask && [fDefaults boolForKey: @"Queue"])794 if ([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask) 795 795 return NSLocalizedString(@"Resume the transfer right away", "Torrent cell -> button info"); 796 796 else if ([torrent waitingToStart])
Note: See TracChangeset
for help on using the changeset viewer.