Fix method name.

This commit is contained in:
Gregory John Casamento 2020-08-09 08:02:41 -04:00
parent 46334bf4ca
commit 72eb294eb6
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ typedef NSString* NSTextInputSourceIdentifier;
- (id<NSTextInputClient>) client;
- (BOOL) acceptsGlyphInfo;
- (void) setAccessGlyphInfo: (BOOL)flag;
- (void) setAcceptsGlyphInfo: (BOOL)flag;
- (NSArray *) allowedInputSourceLocales;
- (void) setAllowedInputSourceLocales: (NSArray *)locales;

View file

@ -55,7 +55,7 @@ NSTextInputContext *__currentInputContext;
return _acceptsGlyphInfo;
}
- (void) setAccessGlyphInfo: (BOOL)flag
- (void) setAcceptsGlyphInfo: (BOOL)flag
{
_acceptsGlyphInfo = flag;
}