diff options
Diffstat (limited to 'macosx/HBEncodingProgressHUDController.h')
-rw-r--r-- | macosx/HBEncodingProgressHUDController.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/macosx/HBEncodingProgressHUDController.h b/macosx/HBEncodingProgressHUDController.h index e147d09c4..f8a829588 100644 --- a/macosx/HBEncodingProgressHUDController.h +++ b/macosx/HBEncodingProgressHUDController.h @@ -7,6 +7,8 @@ #import <Cocoa/Cocoa.h> #import "HBHUD.h" +NS_ASSUME_NONNULL_BEGIN + @protocol HBEncodingProgressHUDControllerDelegate <NSObject> - (void)cancelEncoding; @@ -17,7 +19,10 @@ @property (nonatomic, nullable, assign) id<HBEncodingProgressHUDControllerDelegate> delegate; -@property (nonatomic, nonnull) NSString *info; +@property (nonatomic) NSString *info; @property (nonatomic) double progress; @end + +NS_ASSUME_NONNULL_END + |