Commit b6688f49 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: compilation fix

parent 50f07bc4
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment