Use properties instead of ivars (#2453)

This commit is contained in:
Dmitry Serov
2022-02-22 16:04:20 +00:00
committed by GitHub
parent 95e30768c4
commit 54d1a02e92
103 changed files with 3653 additions and 3917 deletions

View File

@@ -7,20 +7,10 @@
#import "InfoViewController.h"
@class FileOutlineController;
@interface InfoFileViewController : NSViewController<InfoViewController>
{
NSArray* fTorrents;
BOOL fSet;
IBOutlet FileOutlineController* fFileController;
IBOutlet NSSearchField* fFileFilterField;
IBOutlet NSButton* fCheckAllButton;
IBOutlet NSButton* fUncheckAllButton;
}
@property(nonatomic, readonly) NSArray* quickLookURLs;
@property(nonatomic, readonly) BOOL canQuickLook;
- (void)setInfoForTorrents:(NSArray*)torrents;
- (void)updateInfo;
@@ -31,8 +21,6 @@
- (IBAction)checkAll:(id)sender;
- (IBAction)uncheckAll:(id)sender;
@property(nonatomic, readonly) NSArray* quickLookURLs;
@property(nonatomic, readonly) BOOL canQuickLook;
- (NSRect)quickLookSourceFrameForPreviewItem:(id<QLPreviewItem>)item;
@end