mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 22:00:46 +00:00
(-_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:
parent
071f40521a
commit
d711920497
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2003-02-15 18:04 Alexander Malmberg <alexander@malmberg.org>
|
||||||
|
|
||||||
|
* Source/NSSpellChecker.m (-_launchSpellCheckerForLanguage:): Don't
|
||||||
|
printf-expand the error message twice (might cause a crash if
|
||||||
|
'language' contains a "%").
|
||||||
|
|
||||||
Sat Feb 15 13:26:03 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
Sat Feb 15 13:26:03 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||||
|
|
||||||
* Headers/gnustep/gui/AppKit.h: Include NSRulerView.h
|
* Headers/gnustep/gui/AppKit.h: Include NSRulerView.h
|
||||||
|
|
|
@ -115,9 +115,8 @@ NSString *GSSpellServerName(NSString *checkerDictionary, NSString *language);
|
||||||
if (proxy == nil)
|
if (proxy == nil)
|
||||||
{
|
{
|
||||||
NSRunAlertPanel(nil,
|
NSRunAlertPanel(nil,
|
||||||
[NSString stringWithFormat:
|
@"Failed to contact spell checker for language '%@'",
|
||||||
@"Failed to contact spell checker for language '%@'", language],
|
@"Continue", nil, nil, language);
|
||||||
@"Continue", nil, nil);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue