cocoa: remove dead code

This became dead code in commit 3f594c2e.
This commit is contained in:
Stefano Pigozzi 2014-01-21 23:29:46 +01:00
parent a48a1db1d0
commit 369e88c99b
2 changed files with 0 additions and 8 deletions

View File

@ -28,7 +28,6 @@
- (void)handleFilesArray:(NSArray *)files;
- (BOOL)isInFullScreenMode;
- (NSSize)videoSize;
- (NSScreen *)fsScreen;
@property(nonatomic, assign) struct vo *vout;
@end

View File

@ -646,13 +646,6 @@ int vo_cocoa_cgl_color_size(struct vo *vo)
return self.vout->opts->fullscreen;
}
- (NSSize)videoSize {
return (NSSize) {
.width = self.vout->cocoa->aspdat.prew,
.height = self.vout->cocoa->aspdat.preh,
};
}
- (NSScreen *)fsScreen {
struct vo_cocoa_state *s = self.vout->cocoa;
return s->fs_screen;