diff options
author | ritsuka <[email protected]> | 2009-03-01 18:00:26 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2009-03-01 18:00:26 +0000 |
commit | a2763d8dc216bc2670d49128d98dd65600cfe95f (patch) | |
tree | 8f0626993b49b3834ad6a89af3145fa4eab00de4 /macosx/HBQueueController.mm | |
parent | 1d3a65d04e19f8adf752e44a2905d1b4932efe7e (diff) |
MacGui; fixed warnings related to 64bit cocoa.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2183 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBQueueController.mm')
-rw-r--r-- | macosx/HBQueueController.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm index aa5e55a8c..3e1b1f59b 100644 --- a/macosx/HBQueueController.mm +++ b/macosx/HBQueueController.mm @@ -491,7 +491,7 @@ static NSString* HBQueuePauseResumeToolbarIdentifier = @"HBQueuePauseRe [fHBController Pause:NULL]; NSString * alertTitle = [NSString stringWithFormat:NSLocalizedString(@"Stop This Encode and Remove It ?", nil)]; // Which window to attach the sheet to? - NSWindow * docWindow; + NSWindow * docWindow = nil; if ([sender respondsToSelector: @selector(window)]) docWindow = [sender window]; |