vlc | branch: master | David Fuhrmann <[email protected]> | Fri Jan 1 22:19:10 2016 +0100| [f82f77baff59d1835c5580598f817993416a8d85] | committer: David Fuhrmann
macosx: cosmetics > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f82f77baff59d1835c5580598f817993416a8d85 --- modules/gui/macosx/VideoView.m | 3 +-- modules/gui/macosx/misc.m | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/gui/macosx/VideoView.m b/modules/gui/macosx/VideoView.m index 5ac7f05..826f3f2 100644 --- a/modules/gui/macosx/VideoView.m +++ b/modules/gui/macosx/VideoView.m @@ -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; diff --git a/modules/gui/macosx/misc.m b/modules/gui/macosx/misc.m index 25cdd99..0eab81d 100644 --- a/modules/gui/macosx/misc.m +++ b/modules/gui/macosx/misc.m @@ -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; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
