mirror of
https://github.com/transmission/transmission.git
synced 2026-04-18 07:56:33 +01:00
fix: eliminate torrents list retain cycles (#8603)
This commit is contained in:
@@ -24,6 +24,6 @@
|
|||||||
|
|
||||||
@property(nonatomic) IBOutlet NSView* fTorrentProgressBarView;
|
@property(nonatomic) IBOutlet NSView* fTorrentProgressBarView;
|
||||||
|
|
||||||
@property(nonatomic) TorrentTableView* fTorrentTableView;
|
@property(nonatomic, weak) TorrentTableView* fTorrentTableView;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
@property(nonatomic) NSTrackingArea* fTrackingArea;
|
@property(nonatomic) NSTrackingArea* fTrackingArea;
|
||||||
@property(nonatomic) NSImage* fImage;
|
@property(nonatomic) NSImage* fImage;
|
||||||
@property(nonatomic) NSImage* fAlternativeImage;
|
@property(nonatomic) NSImage* fAlternativeImage;
|
||||||
@property(nonatomic) IBOutlet TorrentCell* torrentCell;
|
@property(nonatomic, weak) IBOutlet TorrentCell* torrentCell;
|
||||||
@property(nonatomic, readonly) TorrentTableView* torrentTableView;
|
@property(nonatomic, readonly) TorrentTableView* torrentTableView;
|
||||||
@property(nonatomic) NSUserDefaults* fDefaults;
|
@property(nonatomic) NSUserDefaults* fDefaults;
|
||||||
@end
|
@end
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
@interface TorrentCellControlButton ()
|
@interface TorrentCellControlButton ()
|
||||||
@property(nonatomic) NSTrackingArea* fTrackingArea;
|
@property(nonatomic) NSTrackingArea* fTrackingArea;
|
||||||
@property(nonatomic, copy) NSString* controlImageSuffix;
|
@property(nonatomic, copy) NSString* controlImageSuffix;
|
||||||
@property(nonatomic) IBOutlet TorrentCell* torrentCell;
|
@property(nonatomic, weak) IBOutlet TorrentCell* torrentCell;
|
||||||
@property(nonatomic, readonly) TorrentTableView* torrentTableView;
|
@property(nonatomic, readonly) TorrentTableView* torrentTableView;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
@interface TorrentCellRevealButton ()
|
@interface TorrentCellRevealButton ()
|
||||||
@property(nonatomic) NSTrackingArea* fTrackingArea;
|
@property(nonatomic) NSTrackingArea* fTrackingArea;
|
||||||
@property(nonatomic, copy) NSString* revealImageString;
|
@property(nonatomic, copy) NSString* revealImageString;
|
||||||
@property(nonatomic) IBOutlet TorrentCell* torrentCell;
|
@property(nonatomic, weak) IBOutlet TorrentCell* torrentCell;
|
||||||
@property(nonatomic, readonly) TorrentTableView* torrentTableView;
|
@property(nonatomic, readonly) TorrentTableView* torrentTableView;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user