diff options
author | Damiano Galassi <[email protected]> | 2019-08-12 10:19:00 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-08-12 10:19:00 +0200 |
commit | c5a4d181ebedbdee2bdfefeffa28128d0b9c95c1 (patch) | |
tree | 635e3d036b7065987f29d38489838ceb6cdd11eb /macosx/HBQueueInfoViewController.m | |
parent | 76d08e5d4bb6287de03519cf43cc298d2d896a7a (diff) |
MacGui: enable and fix more warnings. Review nullability annotations.
Diffstat (limited to 'macosx/HBQueueInfoViewController.m')
-rw-r--r-- | macosx/HBQueueInfoViewController.m | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/macosx/HBQueueInfoViewController.m b/macosx/HBQueueInfoViewController.m index 0521ccc04..583eb3cfc 100644 --- a/macosx/HBQueueInfoViewController.m +++ b/macosx/HBQueueInfoViewController.m @@ -9,12 +9,12 @@ @interface HBQueueInfoViewController () -@property (weak) IBOutlet NSView *statisticsHeader; -@property (weak) IBOutlet NSTextField *statisticsLabel; -@property (weak) IBOutlet NSTextField *summaryLabel; -@property (weak) IBOutlet NSScrollView *scrollView; +@property (nonatomic, weak) IBOutlet NSView *statisticsHeader; +@property (nonatomic, weak) IBOutlet NSTextField *statisticsLabel; +@property (nonatomic, weak) IBOutlet NSTextField *summaryLabel; +@property (nonatomic, weak) IBOutlet NSScrollView *scrollView; -@property (weak) id<HBQueueDetailsViewControllerDelegate> delegate; +@property (nonatomic, weak) id<HBQueueDetailsViewControllerDelegate> delegate; @property (nonatomic) BOOL canReset; |