[vlc-commits] macosx: compilation fix
Felix Paul Kühne
git at videolan.org
Fri Sep 7 16:19:24 CEST 2012
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Fri Sep 7 16:19:25 2012 +0200| [b6688f49a3c3dccb1d142c92ef7c0ecf63065922] | committer: Felix Paul Kühne
macosx: compilation fix
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b6688f49a3c3dccb1d142c92ef7c0ecf63065922
---
modules/gui/macosx/wizard.m | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/modules/gui/macosx/wizard.m b/modules/gui/macosx/wizard.m
index a06ae67..d6ebf68 100644
--- a/modules/gui/macosx/wizard.m
+++ b/modules/gui/macosx/wizard.m
@@ -1218,7 +1218,7 @@ static VLCWizard *_o_sharedInstance = nil;
if(! [[o_userSelections objectForKey:@"partExtractFrom"]
isEqualToString:@""]) {
- NSArray * components = [o_userSelections objectForKey: @"partExtractFrom"] componentsSeparatedByString:@":"];
+ NSArray * components = [[o_userSelections objectForKey: @"partExtractFrom"] componentsSeparatedByString:@":"];
NSUInteger componentCount = [components count];
NSUInteger time = 0;
if (componentCount == 1)
@@ -1234,8 +1234,7 @@ static VLCWizard *_o_sharedInstance = nil;
if(! [[o_userSelections objectForKey:@"partExtractTo"]
isEqualToString:@""]) {
- NSArray * components = [[o_userSelections
- objectForKey: @"partExtractTo"] componentsSeparatedByString:@":"];
+ NSArray * components = [[o_userSelections objectForKey: @"partExtractTo"] componentsSeparatedByString:@":"];
NSUInteger componentCount = [components count];
NSUInteger time = 0;
if (componentCount == 1)
More information about the vlc-commits
mailing list