]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/controls.m
macosx: renamed getVoutView to voutView in order to make it conform to the cocoa...
[vlc] / modules / gui / macosx / controls.m
index b6ccf0a26d6c196ff646e408e59cee51be5110e0..3eaadf9bbfdab7dcdb1c96ff27ec49b94fd0d5ce 100644 (file)
     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_PLAY_PAUSE );
 }
 
-/* FIXME: I want to be Private */
-
-- (id)getVoutView
+- (id)voutView
 {
     id window;
     id voutView = nil;
         /* We have a detached vout */
         else if( [[window className] isEqualToString: @"VLCVoutWindow"] )
         {
-            msg_Dbg( VLCIntf, "detached vout controls.m call getVoutView" );
-            voutView = [window getVoutView];
+            msg_Dbg( VLCIntf, "detached vout controls.m call voutView" );
+            voutView = [window voutView];
         }
     }
     return [[voutView retain] autorelease];
     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_STOP );
     /* Close the window directly, because we do know that there
      * won't be anymore video. It's currently waiting a bit. */
-    [[[self _voutView] window] orderOut:self];
+    [[[self voutView] window] orderOut:self];
 }
 
 - (IBAction)faster:(id)sender