Commit 2c21880e authored by David Fuhrmann's avatar David Fuhrmann Committed by Felix Paul Kühne

macosx: remove outdated methods for fullscreen handling

(cherry picked from commit d9cfe67b8e23f388e45aee1919af1d4d773ec0d3)
Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent 5cc79682
...@@ -186,7 +186,6 @@ ...@@ -186,7 +186,6 @@
/* fullscreen handling */ /* fullscreen handling */
- (void)showFullscreenController; - (void)showFullscreenController;
- (BOOL)isFullscreen; - (BOOL)isFullscreen;
- (void)updateFullscreen;
- (void)lockFullscreenAnimation; - (void)lockFullscreenAnimation;
- (void)unlockFullscreenAnimation; - (void)unlockFullscreenAnimation;
- (void)enterFullscreen; - (void)enterFullscreen;
...@@ -211,7 +210,6 @@ ...@@ -211,7 +210,6 @@
} }
- (BOOL)isFullscreen; - (BOOL)isFullscreen;
- (void)updateFullscreen;
- (void)customZoom:(id)sender; - (void)customZoom:(id)sender;
@end @end
...@@ -1720,11 +1720,6 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -1720,11 +1720,6 @@ static VLCMainWindow *_o_sharedInstance = nil;
[o_fspanel fadeIn]; [o_fspanel fadeIn];
} }
- (void)updateFullscreen
{
[[VLCMain sharedInstance] fullscreenChanged];
}
- (BOOL)isFullscreen - (BOOL)isFullscreen
{ {
return b_fullscreen; return b_fullscreen;
...@@ -2654,11 +2649,6 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -2654,11 +2649,6 @@ static VLCMainWindow *_o_sharedInstance = nil;
[[VLCCoreInteraction sharedInstance] toggleFullscreen]; [[VLCCoreInteraction sharedInstance] toggleFullscreen];
} }
- (void)updateFullscreen
{
[[VLCMain sharedInstance] fullscreenChanged];
}
- (BOOL)isFullscreen - (BOOL)isFullscreen
{ {
return [[VLCMainWindow sharedInstance] isFullscreen]; return [[VLCMainWindow sharedInstance] isFullscreen];
......
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