* Source/NSSpellChecker.m: Use NSLog rather than a popup alert when the spell

server can't be contacted; otherwise the user may be spammed with a series
of popups if automatic spellchecking (underlining) is turned on, but
the current language isn't set.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@33816 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2011-09-07 19:56:36 +00:00
parent 4e0ff7f305
commit 9bbf725f7c
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2011-09-07 Eric Wasylishen <ewasylishen@gmail.com>
* Source/NSSpellChecker.m: Use NSLog rather than a popup alert when the spell
server can't be contacted; otherwise the user may be spammed with a series
of popups if automatic spellchecking (underlining) is turned on, but
the current language isn't set.
2011-09-07 Eric Wasylishen <ewasylishen@gmail.com>
* Source/GSCharacterPanel.m: Implement -[NSApplication orderFrontCharacterPalette:]

View file

@ -123,9 +123,7 @@ NSString *GSSpellServerName(NSString *checkerDictionary, NSString *language);
proxy = GSContactApplication(spellServicePath, port, finishBy);
if (proxy == nil)
{
NSRunAlertPanel(nil,
@"Failed to contact spell checker for language '%@'",
@"Continue", nil, nil, language);
NSLog(@"Failed to contact spell checker for language '%@'", language);
}
else
{