Changeset 10237


Ignore:
Timestamp:
Feb 20, 2010, 2:43:25 PM (13 years ago)
Author:
livings124
Message:

dead code removal

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/macosx/Controller.m

    r10218 r10237  
    10021002                        forcePath: [dict objectForKey: @"Path"]];
    10031003    [dict release];
    1004 }
    1005 
    1006 - (void) incompleteChoiceClosed: (NSOpenPanel *) openPanel returnCode: (NSInteger) code contextInfo: (NSDictionary *) dictionary
    1007 {
    1008     if (code == NSOKButton)
    1009         [fDefaults setObject: [[openPanel filenames] objectAtIndex: 0] forKey: @"IncompleteDownloadFolder"];
    1010     else
    1011         [fDefaults setBool: NO forKey: @"UseIncompleteDownloadFolder"];
    1012    
    1013     [self performSelectorOnMainThread: @selector(openFilesWithDict:) withObject: dictionary waitUntilDone: NO];
    1014 }
    1015 
    1016 - (void) downloadChoiceClosed: (NSOpenPanel *) openPanel returnCode: (NSInteger) code contextInfo: (NSDictionary *) dictionary
    1017 {
    1018     if (code == NSOKButton)
    1019     {
    1020         [fDefaults setObject: [[openPanel filenames] objectAtIndex: 0] forKey: @"DownloadFolder"];
    1021         [self performSelectorOnMainThread: @selector(openFilesWithDict:) withObject: dictionary waitUntilDone: NO];
    1022     }
    1023     else
    1024         [dictionary release];
    10251004}
    10261005
     
    40474026            for (Torrent * torrent in fTorrents)
    40484027                [torrent wakeUp];
    4049             #warning check speed limit timer?
    4050             //[self autoSpeedLimitChange: nil];
    40514028            break;
    40524029    }
Note: See TracChangeset for help on using the changeset viewer.