summaryrefslogtreecommitdiffstats
path: root/macosx/HBSubtitlesController.m
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-10-30 19:37:50 +0000
committerritsuka <[email protected]>2014-10-30 19:37:50 +0000
commite01093fa14bfe568cff46583b2da581a0afb0bb9 (patch)
tree3d3be1cc7082b27e157859f94902000546c9ca99 /macosx/HBSubtitlesController.m
parent7fd3494667e29925340f9fc5c48a4c6ae0ef76bb (diff)
MacGui: fixed some warnings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6486 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBSubtitlesController.m')
-rw-r--r--macosx/HBSubtitlesController.m3
1 files changed, 1 insertions, 2 deletions
diff --git a/macosx/HBSubtitlesController.m b/macosx/HBSubtitlesController.m
index 187d96316..91ed94c8d 100644
--- a/macosx/HBSubtitlesController.m
+++ b/macosx/HBSubtitlesController.m
@@ -341,12 +341,11 @@ NSString *keySubTrackLanguageIndex = @"keySubTrackLanguageIndex";
- (IBAction)showSettingsSheet:(id)sender
{
self.defaultsController = [[[HBSubtitlesDefaultsController alloc] initWithSettings:self.settings] autorelease];
- self.defaultsController.delegate = self;
[NSApp beginSheet:[self.defaultsController window]
modalForWindow:[[self view] window]
modalDelegate:self
- didEndSelector:NULL
+ didEndSelector:@selector(sheetDidEnd)
contextInfo:NULL];
}