Coding style fixups

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22019 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2005-11-16 11:34:25 +00:00
parent 397660b06d
commit 6988bf34c2
60 changed files with 577 additions and 513 deletions

View file

@ -892,7 +892,7 @@ GSSetDragTypes(NSView* obj, NSArray *types)
/**
* Notifies the receiver that it will now be a view of newWindow.
* Note, this method is also used when removing a view from a window
* (in which case, newWindow is nil ) to let all the subviews know
* (in which case, newWindow is nil) to let all the subviews know
* that they have also been removed from the window.
*/
- (void) viewWillMoveToWindow: (NSWindow*)newWindow
@ -3884,7 +3884,7 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level)
*/
- (void) encodeWithCoder: (NSCoder*)aCoder
{
if([aCoder allowsKeyedCoding])
if ([aCoder allowsKeyedCoding])
{
int vFlags = 0;
@ -3902,13 +3902,13 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level)
vFlags = _autoresizingMask;
// add the autoresize flag.
if(_autoresizes_subviews)
if (_autoresizes_subviews)
{
vFlags |= 0x100;
}
// add the hidden flag
if(_is_hidden)
if (_is_hidden)
{
vFlags |= 0x80000000;
}