mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 06:51:44 +00:00
* Source/GSGormLoading.m (GSWindowTemplate initWithCoder:):
Remove replace to none assigned variable. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@38005 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
77ef14dcd8
commit
8bc228a47e
2 changed files with 10 additions and 5 deletions
|
@ -1,4 +1,9 @@
|
|||
2014-07-04 Fred Kiefer <FredKiefer@gmx.de>
|
||||
2014-07-24 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/GSGormLoading.m (GSWindowTemplate initWithCoder:): Remove
|
||||
replace to none assigned variable.
|
||||
|
||||
2014-07-21 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSBox.m (-calcSizesAllowingNegative): Protect against
|
||||
_cell being nil.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue