Changeset 2327


Ignore:
Timestamp:
Jul 11, 2007, 1:40:49 AM (16 years ago)
Author:
livings124
Message:

If Transmission is opened by double-clicking a torrent file, open that torrent before setting up auto-import

Location:
trunk/macosx
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/macosx/Controller.m

    r2295 r2327  
    448448    fSpeedLimitTimer = [NSTimer scheduledTimerWithTimeInterval: AUTO_SPEED_LIMIT_SECONDS target: self
    449449        selector: @selector(autoSpeedLimit) userInfo: nil repeats: YES];
    450    
    451     //auto importing
    452     [self checkAutoImportDirectory];
    453450}
    454451
     
    461458        andSelector: @selector(handleOpenContentsEvent:replyEvent:)
    462459        forEventClass: kCoreEventClass andEventID: kAEOpenContents];
     460   
     461    //auto importing
     462    [self checkAutoImportDirectory];
    463463   
    464464    //debug warning
  • trunk/macosx/InfoWindowController.m

    r2318 r2327  
    930930
    931931- (NSString *) outlineView: (NSOutlineView *) outlineView toolTipForCell: (NSCell *) cell rect: (NSRectPointer) rect
    932                 tableColumn: (NSTableColumn *) tableColumn item: (id) item mouseLocation: (NSPoint) mouseLocation
     932        tableColumn: (NSTableColumn *) tableColumn item: (id) item mouseLocation: (NSPoint) mouseLocation
    933933{
    934934    NSString * ident = [tableColumn identifier];
  • trunk/macosx/Torrent.m

    r2318 r2327  
    13141314- (void) setFileCheckState: (int) state forIndexes: (NSIndexSet *) indexSet
    13151315{
     1316    #warning multiples
    13161317    int index;
    13171318    for (index = [indexSet firstIndex]; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index])
     
    13251326- (void) setFilePriority: (int) priority forIndexes: (NSIndexSet *) indexSet
    13261327{
     1328    #warning multiples
    13271329    int index;
    13281330    for (index = [indexSet firstIndex]; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index])
Note: See TracChangeset for help on using the changeset viewer.