Changeset 10494
- Timestamp:
- Apr 17, 2010, 6:44:34 PM (13 years ago)
- Location:
- trunk/macosx
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/InfoActivityViewController.m
r10448 r10494 68 68 - (void) setInfoForTorrents: (NSArray *) torrents 69 69 { 70 if (fTorrents && [fTorrents isEqualToArray: torrents]) 71 return; 72 70 //don't check if it's the same in case the metadata changed 73 71 [fTorrents release]; 74 72 fTorrents = [torrents retain]; -
trunk/macosx/InfoFileViewController.m
r10389 r10494 71 71 - (void) setInfoForTorrents: (NSArray *) torrents 72 72 { 73 if (fTorrents && [fTorrents isEqualToArray: torrents]) 74 return; 75 73 //don't check if it's the same in case the metadata changed 76 74 [fTorrents release]; 77 75 fTorrents = [torrents retain]; -
trunk/macosx/InfoGeneralViewController.m
r10389 r10494 73 73 - (void) setInfoForTorrents: (NSArray *) torrents 74 74 { 75 if (fTorrents && [fTorrents isEqualToArray: torrents]) 76 return; 77 75 //don't check if it's the same in case the metadata changed 78 76 [fTorrents release]; 79 77 fTorrents = [torrents retain]; -
trunk/macosx/InfoOptionsViewController.m
r10389 r10494 63 63 - (void) setInfoForTorrents: (NSArray *) torrents 64 64 { 65 if (fTorrents && [fTorrents isEqualToArray: torrents]) 66 return; 67 65 //don't check if it's the same in case the metadata changed 68 66 [fTorrents release]; 69 67 fTorrents = [torrents retain]; -
trunk/macosx/InfoPeersViewController.m
r10389 r10494 111 111 - (void) setInfoForTorrents: (NSArray *) torrents 112 112 { 113 if (fTorrents && [fTorrents isEqualToArray: torrents]) 114 return; 115 113 //don't check if it's the same in case the metadata changed 116 114 [fTorrents release]; 117 115 fTorrents = [torrents retain]; -
trunk/macosx/InfoTrackersViewController.m
r10389 r10494 81 81 - (void) setInfoForTorrents: (NSArray *) torrents 82 82 { 83 if (fTorrents && [fTorrents isEqualToArray: torrents]) 84 return; 85 83 //don't check if it's the same in case the metadata changed 86 84 [fTorrents release]; 87 85 fTorrents = [torrents retain];
Note: See TracChangeset
for help on using the changeset viewer.