]> git.sesse.net Git - vlc/commitdiff
macosx: getVoutView is gone from here.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sat, 20 Sep 2008 19:34:51 +0000 (21:34 +0200)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sat, 20 Sep 2008 19:36:30 +0000 (21:36 +0200)
modules/gui/macosx/controls.m

index f5441289446e0ba783504469d7f1cfb21795a9d1..e7e8bdc78c6864d940e5e2fb217813db96c147d9 100644 (file)
 }
 
 - (BOOL) isFullscreen {
-    id o_vout_view = [self getVoutView];
+    id o_vout_view = [self voutView];
     if( o_vout_view )
     {
         return [o_vout_view isFullscreen];
                                               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") ] )
             /* 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];