mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
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:
parent
56d153ffc4
commit
0066b2f214
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -73,7 +73,7 @@
|
|||
( sender == closeButton ) ||
|
||||
( sender == resizeBarButton ) )
|
||||
{
|
||||
unsigned int newStyleMask;
|
||||
unsigned int newStyleMask = 0;
|
||||
|
||||
if ( [miniaturizeButton state] == NSOnState )
|
||||
newStyleMask |= NSMiniaturizableWindowMask;
|
||||
|
|
Loading…
Reference in a new issue