Commit 0ef7ea78 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx: getVoutView is gone from here.

parent ea995e62
...@@ -459,7 +459,7 @@ ...@@ -459,7 +459,7 @@
} }
- (BOOL) isFullscreen { - (BOOL) isFullscreen {
id o_vout_view = [self getVoutView]; id o_vout_view = [self voutView];
if( o_vout_view ) if( o_vout_view )
{ {
return [o_vout_view isFullscreen]; return [o_vout_view isFullscreen];
...@@ -475,7 +475,7 @@ ...@@ -475,7 +475,7 @@
FIND_ANYWHERE ); FIND_ANYWHERE );
if( p_vout != NULL ) if( p_vout != NULL )
{ {
id o_vout_view = [self getVoutView]; id o_vout_view = [self voutView];
if( o_vout_view ) if( o_vout_view )
{ {
if( [o_title isEqualToString: _NS("Half Size") ] ) if( [o_title isEqualToString: _NS("Half Size") ] )
...@@ -605,7 +605,7 @@ ...@@ -605,7 +605,7 @@
/* Escape */ /* Escape */
if( key == (unichar) 0x1b ) if( key == (unichar) 0x1b )
{ {
id o_vout_view = [self getVoutView]; id o_vout_view = [self voutView];
if( o_vout_view && [o_vout_view isFullscreen] ) if( o_vout_view && [o_vout_view isFullscreen] )
{ {
[o_vout_view toggleFullscreen]; [o_vout_view toggleFullscreen];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment