(-_launchSpellCheckerForLanguage:): Don't printf-expand the error message twice.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@15965 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
alexm 2003-02-15 17:07:44 +00:00
parent 071f40521a
commit d711920497
2 changed files with 8 additions and 3 deletions

View file

@ -115,9 +115,8 @@ NSString *GSSpellServerName(NSString *checkerDictionary, NSString *language);
if (proxy == nil)
{
NSRunAlertPanel(nil,
[NSString stringWithFormat:
@"Failed to contact spell checker for language '%@'", language],
@"Continue", nil, nil);
@"Failed to contact spell checker for language '%@'",
@"Continue", nil, nil, language);
}
else
{