diff options
author | ritsuka <[email protected]> | 2015-06-01 17:21:48 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-06-01 17:21:48 +0000 |
commit | 29b0a01848dcff05c0ccf184ce1d8b99aec63507 (patch) | |
tree | bb113e45ce46390deef2ca188a6e6d28a610dd21 /macosx/HBSubtitlesDefaults.h | |
parent | 876f1f8cafd3510cb04f022f004610e39d50dbc8 (diff) |
MacGui: add more nullability annotations.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7257 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBSubtitlesDefaults.h')
-rw-r--r-- | macosx/HBSubtitlesDefaults.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/macosx/HBSubtitlesDefaults.h b/macosx/HBSubtitlesDefaults.h index 273086d6e..8b3fa6d4f 100644 --- a/macosx/HBSubtitlesDefaults.h +++ b/macosx/HBSubtitlesDefaults.h @@ -7,6 +7,8 @@ #import <Foundation/Foundation.h> #import "HBPresetCoding.h" +NS_ASSUME_NONNULL_BEGIN + typedef NS_ENUM(NSUInteger, HBSubtitleTrackSelectionBehavior) { HBSubtitleTrackSelectionBehaviorNone, HBSubtitleTrackSelectionBehaviorFirst, @@ -34,3 +36,5 @@ typedef NS_ENUM(NSUInteger, HBSubtitleTrackBurnInBehavior) { @property (nonatomic, readwrite) BOOL burnInBluraySubtitles; @end + +NS_ASSUME_NONNULL_END |