Chnaged GSDontShowAppIcon to GSSuppressAppIcon.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22918 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2006-05-12 16:25:36 +00:00
parent ac24912641
commit b1c6991a10
3 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2006-05-12 Fred Kiefer <FredKiefer@gmx.de>
* Documentation/GuiUser/DefaultsSuppary.gsdoc,
* Source/NSApplication.m (-finishLaunching): Changed
GSDontShowAppIcon to GSSuppressAppIcon.
2006-05-12 Nicolas Roard <nicolas@roard.com>
* TextConverters/RTF/RTFConsumer.m: reorganized -appendImage: in

View file

@ -194,11 +194,11 @@
application. This is a new feature and has not been tested.
</p>
</desc>
<term>GSDontShowAppIcon</term>
<term>GSSuppressAppIcon</term>
<desc>
<p>
A boolean value, <code>NO</code> by default. Specifies wether the
application icon window should be displayed. Set to <code>YES</code>
application icon window should not be displayed. Set to <code>YES</code>
for background server applications.
</p>
</desc>

View file

@ -942,7 +942,7 @@ static NSSize scaledIconSizeForSize(NSSize imageSize)
image = [NSImage imageNamed: @"GNUstep"];
}
[self setApplicationIconImage: image];
if (![defs boolForKey: @"GSDontShowAppIcon"])
if (![defs boolForKey: @"GSSuppressAppIcon"])
{
[self _appIconInit];
}