mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 02:04:20 +00:00
NSSpellChecker: implement stub for +isAutomaticQuoteSubstitutionEnabled
Implement stub for +[NSSpellChecker isAutomaticQuoteSubstitutionEnabled] for compatibility purposes.
This commit is contained in:
parent
39d9105d35
commit
471a81ddb8
2 changed files with 6 additions and 0 deletions
|
@ -82,6 +82,7 @@ enum
|
|||
|
||||
+ (BOOL)isAutomaticTextReplacementEnabled;
|
||||
+ (BOOL)isAutomaticDashSubstitutionEnabled;
|
||||
+ (BOOL)isAutomaticQuoteSubstitutionEnabled;
|
||||
|
||||
//
|
||||
// Making a Checker available
|
||||
|
|
|
@ -172,6 +172,11 @@ static int __documentTag = 0;
|
|||
return NO;
|
||||
}
|
||||
|
||||
+ (BOOL)isAutomaticQuoteSubstitutionEnabled
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
//
|
||||
// Making a Checker available
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue