mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-29 21:37:39 +00:00
* 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:
parent
4e0ff7f305
commit
9bbf725f7c
2 changed files with 8 additions and 3 deletions
|
@ -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:]
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue