mirror of
https://github.com/transmission/transmission.git
synced 2026-04-02 00:27:38 +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) TorrentTableView* fTorrentTableView;
|
||||
@property(nonatomic, weak) TorrentTableView* fTorrentTableView;
|
||||
|
||||
@end
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
@property(nonatomic) NSTrackingArea* fTrackingArea;
|
||||
@property(nonatomic) NSImage* fImage;
|
||||
@property(nonatomic) NSImage* fAlternativeImage;
|
||||
@property(nonatomic) IBOutlet TorrentCell* torrentCell;
|
||||
@property(nonatomic, weak) IBOutlet TorrentCell* torrentCell;
|
||||
@property(nonatomic, readonly) TorrentTableView* torrentTableView;
|
||||
@property(nonatomic) NSUserDefaults* fDefaults;
|
||||
@end
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
@interface TorrentCellControlButton ()
|
||||
@property(nonatomic) NSTrackingArea* fTrackingArea;
|
||||
@property(nonatomic, copy) NSString* controlImageSuffix;
|
||||
@property(nonatomic) IBOutlet TorrentCell* torrentCell;
|
||||
@property(nonatomic, weak) IBOutlet TorrentCell* torrentCell;
|
||||
@property(nonatomic, readonly) TorrentTableView* torrentTableView;
|
||||
@end
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
@interface TorrentCellRevealButton ()
|
||||
@property(nonatomic) NSTrackingArea* fTrackingArea;
|
||||
@property(nonatomic, copy) NSString* revealImageString;
|
||||
@property(nonatomic) IBOutlet TorrentCell* torrentCell;
|
||||
@property(nonatomic, weak) IBOutlet TorrentCell* torrentCell;
|
||||
@property(nonatomic, readonly) TorrentTableView* torrentTableView;
|
||||
@end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user