diff options
author | Damiano Galassi <[email protected]> | 2016-12-27 11:53:11 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2016-12-27 11:53:11 +0100 |
commit | 2cc18941fa64a74d0f86f00215f112d940266585 (patch) | |
tree | 45b4d9b423ebcc5be8605e413af3fc021359e3f9 /macosx/HBPictureHUDController.h | |
parent | ec1553108f3881a380904bcc8be7c19a626cb69a (diff) |
MacGui: enable NSSecureCoding for the queue file.
Diffstat (limited to 'macosx/HBPictureHUDController.h')
-rw-r--r-- | macosx/HBPictureHUDController.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/macosx/HBPictureHUDController.h b/macosx/HBPictureHUDController.h index 1a11d2063..b127347e8 100644 --- a/macosx/HBPictureHUDController.h +++ b/macosx/HBPictureHUDController.h @@ -8,6 +8,8 @@ #import <Cocoa/Cocoa.h> #import "HBHUD.h" +NS_ASSUME_NONNULL_BEGIN + @protocol HBPictureHUDControllerDelegate <NSObject> - (void)displayPreviewAtIndex:(NSUInteger)idx; @@ -21,10 +23,12 @@ @property (nonatomic, nullable, assign) id<HBPictureHUDControllerDelegate> delegate; -@property (nonatomic, nonnull) NSString *info; -@property (nonatomic, nonnull) NSString *scale; +@property (nonatomic, copy) NSString *info; +@property (nonatomic, copy) NSString *scale; @property (nonatomic) NSUInteger pictureCount; @property (nonatomic) NSUInteger selectedIndex; @end + +NS_ASSUME_NONNULL_END |