Changeset 10494


Ignore:
Timestamp:
Apr 17, 2010, 6:44:34 PM (13 years ago)
Author:
livings124
Message:

make sure that the inspector is fully reloaded, specifically for when a transfer is demagnetized

Location:
trunk/macosx
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/macosx/InfoActivityViewController.m

    r10448 r10494  
    6868- (void) setInfoForTorrents: (NSArray *) torrents
    6969{
    70     if (fTorrents && [fTorrents isEqualToArray: torrents])
    71         return;
    72    
     70    //don't check if it's the same in case the metadata changed
    7371    [fTorrents release];
    7472    fTorrents = [torrents retain];
  • trunk/macosx/InfoFileViewController.m

    r10389 r10494  
    7171- (void) setInfoForTorrents: (NSArray *) torrents
    7272{
    73     if (fTorrents && [fTorrents isEqualToArray: torrents])
    74         return;
    75    
     73    //don't check if it's the same in case the metadata changed
    7674    [fTorrents release];
    7775    fTorrents = [torrents retain];
  • trunk/macosx/InfoGeneralViewController.m

    r10389 r10494  
    7373- (void) setInfoForTorrents: (NSArray *) torrents
    7474{
    75     if (fTorrents && [fTorrents isEqualToArray: torrents])
    76         return;
    77    
     75    //don't check if it's the same in case the metadata changed
    7876    [fTorrents release];
    7977    fTorrents = [torrents retain];
  • trunk/macosx/InfoOptionsViewController.m

    r10389 r10494  
    6363- (void) setInfoForTorrents: (NSArray *) torrents
    6464{
    65     if (fTorrents && [fTorrents isEqualToArray: torrents])
    66         return;
    67    
     65    //don't check if it's the same in case the metadata changed
    6866    [fTorrents release];
    6967    fTorrents = [torrents retain];
  • trunk/macosx/InfoPeersViewController.m

    r10389 r10494  
    111111- (void) setInfoForTorrents: (NSArray *) torrents
    112112{
    113     if (fTorrents && [fTorrents isEqualToArray: torrents])
    114         return;
    115    
     113    //don't check if it's the same in case the metadata changed
    116114    [fTorrents release];
    117115    fTorrents = [torrents retain];
  • trunk/macosx/InfoTrackersViewController.m

    r10389 r10494  
    8181- (void) setInfoForTorrents: (NSArray *) torrents
    8282{
    83     if (fTorrents && [fTorrents isEqualToArray: torrents])
    84         return;
    85    
     83    //don't check if it's the same in case the metadata changed
    8684    [fTorrents release];
    8785    fTorrents = [torrents retain];
Note: See TracChangeset for help on using the changeset viewer.