* Source/GSNibLoading.m: Add back code with adds in subviews from

the custom view.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27272 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
gcasa 2008-12-10 06:48:43 +00:00
parent a75e43cb94
commit 63f5afd29e
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2008-12-10 01:54-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Source/GSNibLoading.m: Add back code with adds in subviews from
the custom view.
2008-12-10 01:37-EST Gregory John Casamento <greg_casamento@yahoo.com> 2008-12-10 01:37-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Source/GSNibLoading.m: (-[NSCustomView initWithCoder:]) replace * Source/GSNibLoading.m: (-[NSCustomView initWithCoder:]) replace

View file

@ -846,7 +846,6 @@ static BOOL _isInInterfaceBuilder = NO;
[_view setNextResponder: [self nextResponder]]; [_view setNextResponder: [self nextResponder]];
// [[self superview] replaceSubview: self with: _view]; // replace the old view... // [[self superview] replaceSubview: self with: _view]; // replace the old view...
/*
if (_rFlags.has_subviews) if (_rFlags.has_subviews)
{ {
NSArray *subviews = [self subviews]; NSArray *subviews = [self subviews];
@ -857,7 +856,6 @@ static BOOL _isInInterfaceBuilder = NO;
[_view addSubview: [subviews objectAtIndex: i]]; [_view addSubview: [subviews objectAtIndex: i]];
} }
} }
*/
} }
} }