mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
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:
parent
ac24912641
commit
b1c6991a10
3 changed files with 9 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue