]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/fspanel.m
macosx: renamed getVoutView to voutView in order to make it conform to the cocoa...
[vlc] / modules / gui / macosx / fspanel.m
index d3ceab14d3df584771270492ab28288ac5e5e3ad..5fabdfeda8a5df5ab4915e813a27bf4831991e47 100644 (file)
 
 - (void)setActive:(id)noData
 {
-    if( [[[[VLCMain sharedInstance] getControls] getVoutView] isFullscreen] )
+    if( [[[[VLCMain sharedInstance] getControls] voutView] isFullscreen] )
     {
         b_nonActive = NO;
         [self fadeIn];
 - (void)mouseExited:(NSEvent *)theEvent
 {
     /* give up our focus, so the vout may show us again without letting the user clicking it */
-    if( [[[[VLCMain sharedInstance] getControls] getVoutView] isFullscreen] )
-        [[[[[VLCMain sharedInstance] getControls] getVoutView] window] makeKeyWindow];
+    if( [[[[VLCMain sharedInstance] getControls] voutView] isFullscreen] )
+        [[[[[VLCMain sharedInstance] getControls] voutView] window] makeKeyWindow];
 }
 
 - (void)hideMouse