diff --git a/ChangeLog b/ChangeLog index 6f751b30..66e6b1e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-01-16 12:20 Gregory John Casamento + + * 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 * GormCore/GormDocument.m: Correction for crash on close after diff --git a/Palettes/1Windows/GormWindowAttributesInspector.m b/Palettes/1Windows/GormWindowAttributesInspector.m index 9b961348..5a764728 100644 --- a/Palettes/1Windows/GormWindowAttributesInspector.m +++ b/Palettes/1Windows/GormWindowAttributesInspector.m @@ -73,7 +73,7 @@ ( sender == closeButton ) || ( sender == resizeBarButton ) ) { - unsigned int newStyleMask; + unsigned int newStyleMask = 0; if ( [miniaturizeButton state] == NSOnState ) newStyleMask |= NSMiniaturizableWindowMask;