[vlc-commits] macosx: remove outdated methods for fullscreen handling

David Fuhrmann git at videolan.org
Wed Jul 11 21:52:49 CEST 2012


vlc/vlc-2.0 | branch: master | David Fuhrmann <david.fuhrmann at googlemail.com> | Wed Jul 11 12:59:50 2012 +0200| [2c21880ee59a1e8962c30404c8f3a112e9de3aea] | committer: Felix Paul Kühne

macosx: remove outdated methods for fullscreen handling
(cherry picked from commit d9cfe67b8e23f388e45aee1919af1d4d773ec0d3)

Signed-off-by: Felix Paul Kühne <fkuehne at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=2c21880ee59a1e8962c30404c8f3a112e9de3aea
---

 modules/gui/macosx/MainWindow.h |    2 --
 modules/gui/macosx/MainWindow.m |   10 ----------
 2 files changed, 12 deletions(-)

diff --git a/modules/gui/macosx/MainWindow.h b/modules/gui/macosx/MainWindow.h
index 71f34ca..75b7f9c 100644
--- a/modules/gui/macosx/MainWindow.h
+++ b/modules/gui/macosx/MainWindow.h
@@ -186,7 +186,6 @@
 /* fullscreen handling */
 - (void)showFullscreenController;
 - (BOOL)isFullscreen;
-- (void)updateFullscreen;
 - (void)lockFullscreenAnimation;
 - (void)unlockFullscreenAnimation;
 - (void)enterFullscreen;
@@ -211,7 +210,6 @@
 }
 
 - (BOOL)isFullscreen;
-- (void)updateFullscreen;
 - (void)customZoom:(id)sender;
 
 @end
diff --git a/modules/gui/macosx/MainWindow.m b/modules/gui/macosx/MainWindow.m
index d6d2363..91c9dc2 100644
--- a/modules/gui/macosx/MainWindow.m
+++ b/modules/gui/macosx/MainWindow.m
@@ -1720,11 +1720,6 @@ static VLCMainWindow *_o_sharedInstance = nil;
         [o_fspanel fadeIn];
 }
 
-- (void)updateFullscreen
-{
-    [[VLCMain sharedInstance] fullscreenChanged];
-}
-
 - (BOOL)isFullscreen
 {
     return b_fullscreen;
@@ -2654,11 +2649,6 @@ static VLCMainWindow *_o_sharedInstance = nil;
     [[VLCCoreInteraction sharedInstance] toggleFullscreen];
 }
 
-- (void)updateFullscreen
-{
-    [[VLCMain sharedInstance] fullscreenChanged];
-}
-
 - (BOOL)isFullscreen
 {
     return [[VLCMainWindow sharedInstance] isFullscreen];



More information about the vlc-commits mailing list