From 0ef7ea78ab2456c9f06e5a69a416ae800c1a8008 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Sat, 20 Sep 2008 21:34:51 +0200 Subject: [PATCH] macosx: getVoutView is gone from here. --- modules/gui/macosx/controls.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/gui/macosx/controls.m b/modules/gui/macosx/controls.m index f544128944..e7e8bdc78c 100644 --- a/modules/gui/macosx/controls.m +++ b/modules/gui/macosx/controls.m @@ -459,7 +459,7 @@ } - (BOOL) isFullscreen { - id o_vout_view = [self getVoutView]; + id o_vout_view = [self voutView]; if( o_vout_view ) { return [o_vout_view isFullscreen]; @@ -475,7 +475,7 @@ FIND_ANYWHERE ); if( p_vout != NULL ) { - id o_vout_view = [self getVoutView]; + id o_vout_view = [self voutView]; if( o_vout_view ) { if( [o_title isEqualToString: _NS("Half Size") ] ) @@ -605,7 +605,7 @@ /* Escape */ if( key == (unichar) 0x1b ) { - id o_vout_view = [self getVoutView]; + id o_vout_view = [self voutView]; if( o_vout_view && [o_vout_view isFullscreen] ) { [o_vout_view toggleFullscreen]; -- 2.39.5