xquartz: Silence a compiler warning about missing internal methods on NSApplication

Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
This commit is contained in:
Jeremy Huddleston Sequoia 2021-02-18 12:43:53 -08:00
parent fe89c70e47
commit 279bcbd9cf
1 changed files with 5 additions and 0 deletions

View File

@ -102,6 +102,11 @@ CFStringRef app_prefs_domain_cfstr = NULL;
#define ALL_KEY_MASKS (NSShiftKeyMask | NSControlKeyMask | \
NSAlternateKeyMask | NSCommandKeyMask)
@interface NSApplication (Internal)
- (void)_setKeyWindow:(id)window;
- (void)_setMainWindow:(id)window;
@end
@interface X11Application (Private)
- (void) sendX11NSEvent:(NSEvent *)e;
@end