[vlc-devel] commit: macosx: getVoutView is gone from here. (Pierre d'Herbemont )
git version control
git at videolan.org
Sat Sep 20 21:35:05 CEST 2008
vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Sat Sep 20 21:34:51 2008 +0200| [0ef7ea78ab2456c9f06e5a69a416ae800c1a8008] | committer: Pierre d'Herbemont
macosx: getVoutView is gone from here.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0ef7ea78ab2456c9f06e5a69a416ae800c1a8008
---
modules/gui/macosx/controls.m | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/gui/macosx/controls.m b/modules/gui/macosx/controls.m
index f544128..e7e8bdc 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];
More information about the vlc-devel
mailing list