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/HBDockTile.h | |
parent | 76d08e5d4bb6287de03519cf43cc298d2d896a7a (diff) |
MacGui: enable and fix more warnings. Review nullability annotations.
Diffstat (limited to 'macosx/HBDockTile.h')
-rw-r--r-- | macosx/HBDockTile.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/macosx/HBDockTile.h b/macosx/HBDockTile.h index 434025442..3fcc61cc4 100644 --- a/macosx/HBDockTile.h +++ b/macosx/HBDockTile.h @@ -6,6 +6,8 @@ #import <Cocoa/Cocoa.h> +NS_ASSUME_NONNULL_BEGIN + @interface HBDockTile : NSObject - (instancetype)init NS_UNAVAILABLE; @@ -31,3 +33,6 @@ - (void)updateDockIcon:(double)progress hours:(NSInteger)hours minutes:(NSInteger)minutes seconds:(NSInteger)seconds; @end + +NS_ASSUME_NONNULL_END + |