Corrected some minor issues.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14172 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2002-07-18 04:42:37 +00:00
parent 8cd9572170
commit d617658a43
4 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,13 @@
2002-07-18 Gregory John Casamento <greg_casamento@yahoo.com>
* Source/NSOutlineView.m: Removed an extraneous NSLog.
* Tools/GSspell.m: Changed registration of spell checker to
AmericanEnglish.
* Tools/GSspellInfo.plist: Changed .plist to reflect the new
name. The spell checker was registering itself for simply
"English" and was not being started when a request to check
spelling in a document was being issued. It should work now.
2002-07-17 Adam Fedor <fedor@gnu.org>
* Version: 0.7.9

View file

@ -1581,7 +1581,6 @@ static NSImage *unexpandable = nil;
// of editing.
if (_dataSource_editable == NO)
{
NSLog(@"Data source not editable...");
return;
}

View file

@ -361,7 +361,7 @@ int main(int argc, char** argv)
{
CREATE_AUTORELEASE_POOL (_pool);
NSSpellServer *aServer = [[NSSpellServer alloc] init];
if ([aServer registerLanguage: @"English" byVendor: @"GNU"]) //&&
if ([aServer registerLanguage: @"AmericanEnglish" byVendor: @"GNU"]) //&&
// [aServer registerLanguage: @"Spanish" byVendor: @"GNU"] &&
// [aServer registerLanguage: @"French" byVendor: @"GNU"] )
{

View file

@ -4,7 +4,7 @@
(
{
NSExecutable = GSspell;
NSLanguages = (English);
NSLanguages = (AmericanEnglish);
NSSpellChecker = GNU;
}
);