* Source/GSNibLoading.m: remove extraneous awakeFromNib call in

nibInstantiateWithOwner:topLevelObjects:.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27299 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2008-12-16 00:43:42 +00:00
parent 214c745d1c
commit b10f360ccb
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2008-12-15 19:49-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Source/GSNibLoading.m: remove extraneous awakeFromNib call in
nibInstantiateWithOwner:topLevelObjects:.
2008-12-15 18:37-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Headers/Additions/GNUstepGUI/GSNibLoading.h: Added methods to header

View file

@ -1616,10 +1616,10 @@ static BOOL _isInInterfaceBuilder = NO;
}
// awaken the owner.
if([owner respondsToSelector: @selector(awakeFromNib)])
{
[owner awakeFromNib];
}
// if([owner respondsToSelector: @selector(awakeFromNib)])
// {
// [owner awakeFromNib];
// }
// bring visible windows to front...
en = [_visibleWindows objectEnumerator];