Correction for bug#15236.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@22317 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-01-16 17:24:36 +00:00
parent 56d153ffc4
commit 0066b2f214
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-01-16 12:20 Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/1Windows/GormWindowAttributesInspector.m: Correction
for bug#15236. In ok: method the newStyleMask variable wasn't
properly initialized, this was causing the flags to be set improperly.
2005-12-15 19:08 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormDocument.m: Correction for crash on close after

View file

@ -73,7 +73,7 @@
( sender == closeButton ) ||
( sender == resizeBarButton ) )
{
unsigned int newStyleMask;
unsigned int newStyleMask = 0;
if ( [miniaturizeButton state] == NSOnState )
newStyleMask |= NSMiniaturizableWindowMask;