Commit f82f77ba authored by David Fuhrmann's avatar David Fuhrmann

macosx: cosmetics

parent bffe61d5
......@@ -122,8 +122,7 @@
- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender
{
BOOL b_returned;
b_returned = [[VLCCoreInteraction sharedInstance] performDragOperation: sender];
BOOL b_returned = [[VLCCoreInteraction sharedInstance] performDragOperation:sender];
[self setNeedsDisplay:YES];
return b_returned;
......
......@@ -388,9 +388,9 @@ static bool b_old_spaces_style = YES;
BOOL b_returned;
if (_dropHandler && [_dropHandler respondsToSelector:@selector(performDragOperation:)])
b_returned = [_dropHandler performDragOperation: sender];
b_returned = [_dropHandler performDragOperation:sender];
else // default
b_returned = [[VLCCoreInteraction sharedInstance] performDragOperation: sender];
b_returned = [[VLCCoreInteraction sharedInstance] performDragOperation:sender];
[self setNeedsDisplay:YES];
return b_returned;
......
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