diff options
author | ritsuka <[email protected]> | 2015-05-30 07:17:22 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-05-30 07:17:22 +0000 |
commit | 2837048a59ac5beab0b3428ca89c86857765de0a (patch) | |
tree | 15417d195f7223d85fac22560479717dfda31101 /macosx/HBUtilities.h | |
parent | 93fb333304b2493a50623b04caac95b53eca3240 (diff) |
MacGui: add nullability annotations to the headers and use weak where is possible.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7244 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBUtilities.h')
-rw-r--r-- | macosx/HBUtilities.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/macosx/HBUtilities.h b/macosx/HBUtilities.h index eed1cafcd..de4fe2036 100644 --- a/macosx/HBUtilities.h +++ b/macosx/HBUtilities.h @@ -6,6 +6,8 @@ #import <Foundation/Foundation.h> +NS_ASSUME_NONNULL_BEGIN + @interface HBUtilities : NSObject /** @@ -16,7 +18,7 @@ /** * Returns the url of the current <user>/Library/Application Support/HandBrake folder. */ -+ (NSURL *)appSupportURL; ++ (nullable NSURL *)appSupportURL; /** * Writes a message to standard error. * The message will show up in the output panel and in the activity log. @@ -46,3 +48,6 @@ videoCodec:(uint32_t)codec; @end + +NS_ASSUME_NONNULL_END + |