[vlc-commits] macosx: remove outdated methods for fullscreen handling
David Fuhrmann
git at videolan.org
Wed Jul 11 16:15:27 CEST 2012
vlc | branch: master | David Fuhrmann <david.fuhrmann at googlemail.com> | Wed Jul 11 12:59:50 2012 +0200| [d9cfe67b8e23f388e45aee1919af1d4d773ec0d3] | committer: David Fuhrmann
macosx: remove outdated methods for fullscreen handling
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d9cfe67b8e23f388e45aee1919af1d4d773ec0d3
---
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 2cfe39a..5146829 100644
--- a/modules/gui/macosx/MainWindow.h
+++ b/modules/gui/macosx/MainWindow.h
@@ -192,7 +192,6 @@
/* fullscreen handling */
- (void)showFullscreenController;
- (BOOL)isFullscreen;
-- (void)updateFullscreen;
- (void)lockFullscreenAnimation;
- (void)unlockFullscreenAnimation;
- (void)enterFullscreen;
@@ -217,7 +216,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 cd4e80c..f0b5661 100644
--- a/modules/gui/macosx/MainWindow.m
+++ b/modules/gui/macosx/MainWindow.m
@@ -1924,11 +1924,6 @@ static VLCMainWindow *_o_sharedInstance = nil;
[o_fspanel fadeIn];
}
-- (void)updateFullscreen
-{
- [[VLCMain sharedInstance] fullscreenChanged];
-}
-
- (BOOL)isFullscreen
{
return b_fullscreen;
@@ -2858,11 +2853,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