diff options
author | ritsuka <[email protected]> | 2008-07-28 17:06:39 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2008-07-28 17:06:39 +0000 |
commit | 9fcde78af1af10563bf9ea0cd07dbc9da3207a66 (patch) | |
tree | e9951b5bc2998182b0126290fcd4332a570ab950 /macosx/HBQueueController.mm | |
parent | cd18a6fff47eb748cde2df8c3b719e3a07b71543 (diff) |
MacGui: Use nil instead of NULL. Patch by blindjimmy. http://handbrake.djgraphite.com/r/33/
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1586 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBQueueController.mm')
-rw-r--r-- | macosx/HBQueueController.mm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm index d22ef39dd..6bcfe0d78 100644 --- a/macosx/HBQueueController.mm +++ b/macosx/HBQueueController.mm @@ -100,11 +100,11 @@ bool IsFirstPass(int jobID) // HBJob //------------------------------------------------------------------------------------ -static NSMutableParagraphStyle * _descriptionParagraphStyle = NULL; -static NSDictionary* _detailAttribute = NULL; -static NSDictionary* _detailBoldAttribute = NULL; -static NSDictionary* _titleAttribute = NULL; -static NSDictionary* _shortHeightAttribute = NULL; +static NSMutableParagraphStyle * _descriptionParagraphStyle = nil; +static NSDictionary* _detailAttribute = nil; +static NSDictionary* _detailBoldAttribute = nil; +static NSDictionary* _titleAttribute = nil; +static NSDictionary* _shortHeightAttribute = nil; @implementation HBJob |