diff --git a/ChangeLog b/ChangeLog index 5717c53a1..f2a018928 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2002-07-18 Gregory John Casamento + + * 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 * Version: 0.7.9 diff --git a/Source/NSOutlineView.m b/Source/NSOutlineView.m index 57ef79162..40bd591be 100644 --- a/Source/NSOutlineView.m +++ b/Source/NSOutlineView.m @@ -1581,7 +1581,6 @@ static NSImage *unexpandable = nil; // of editing. if (_dataSource_editable == NO) { - NSLog(@"Data source not editable..."); return; } diff --git a/Tools/GSspell.m b/Tools/GSspell.m index c6699b25f..7c9142c1d 100644 --- a/Tools/GSspell.m +++ b/Tools/GSspell.m @@ -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"] ) { diff --git a/Tools/GSspellInfo.plist b/Tools/GSspellInfo.plist index 790d28005..b009d1938 100644 --- a/Tools/GSspellInfo.plist +++ b/Tools/GSspellInfo.plist @@ -4,7 +4,7 @@ ( { NSExecutable = GSspell; - NSLanguages = (English); + NSLanguages = (AmericanEnglish); NSSpellChecker = GNU; } );