X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fmacosx%2Fcontrols.m;h=3eaadf9bbfdab7dcdb1c96ff27ec49b94fd0d5ce;hb=9ac6fec0593429dfb7a4cf25698b874ebc045be2;hp=b6ccf0a26d6c196ff646e408e59cee51be5110e0;hpb=d4b55453aa9284ce720f6e2b692d9fd2f2f4e825;p=vlc diff --git a/modules/gui/macosx/controls.m b/modules/gui/macosx/controls.m index b6ccf0a26d..3eaadf9bbf 100644 --- a/modules/gui/macosx/controls.m +++ b/modules/gui/macosx/controls.m @@ -158,9 +158,7 @@ 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; @@ -176,8 +174,8 @@ /* 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]; @@ -189,7 +187,7 @@ 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