diff --git a/ChangeLog b/ChangeLog index 3690b4d19..11f2792b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ -2014-07-04 Fred Kiefer +2014-07-24 Fred Kiefer + + * Source/GSGormLoading.m (GSWindowTemplate initWithCoder:): Remove + replace to none assigned variable. + +2014-07-21 Fred Kiefer * Source/NSBox.m (-calcSizesAllowingNegative): Protect against _cell being nil. diff --git a/Source/GSGormLoading.m b/Source/GSGormLoading.m index 2ddde5862..b84717070 100644 --- a/Source/GSGormLoading.m +++ b/Source/GSGormLoading.m @@ -784,17 +784,17 @@ static NSString *GSInternalNibItemAddedNotification = @"_GSInternalNibItemAddedN return _autoPositionMask; } -- (void)setAutoPositionMask: (unsigned int)flag +- (void) setAutoPositionMask: (unsigned int)flag { _autoPositionMask = flag; } -- (BOOL)deferFlag +- (BOOL) deferFlag { return _deferFlag; } -- (void)setDeferFlag: (BOOL)flag +- (void) setDeferFlag: (BOOL)flag { _deferFlag = flag; } @@ -892,7 +892,7 @@ static NSString *GSInternalNibItemAddedNotification = @"_GSInternalNibItemAddedN // decode the defer flag... [coder decodeValueOfObjCType: @encode(BOOL) at: &_deferFlag]; _autoPositionMask = GSWindowAutoPositionNone; - _screenRect = [[_object screen] frame]; + _screenRect = [[obj screen] frame]; } // FIXME: The designated initializer logic for NSWindow is in the initWithCoder: method of