Commit d9cfe67b authored by David Fuhrmann's avatar David Fuhrmann

macosx: remove outdated methods for fullscreen handling

parent 1085cb4e
...@@ -192,7 +192,6 @@ ...@@ -192,7 +192,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;
...@@ -217,7 +216,6 @@ ...@@ -217,7 +216,6 @@
} }
- (BOOL)isFullscreen; - (BOOL)isFullscreen;
- (void)updateFullscreen;
- (void)customZoom:(id)sender; - (void)customZoom:(id)sender;
@end @end
...@@ -1924,11 +1924,6 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -1924,11 +1924,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;
...@@ -2858,11 +2853,6 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -2858,11 +2853,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