* 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:
gcasa 2008-12-16 00:43:42 +00:00
parent a7a1beee9a
commit 4f03b51ff8
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> 2008-12-15 18:37-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Headers/Additions/GNUstepGUI/GSNibLoading.h: Added methods to header * Headers/Additions/GNUstepGUI/GSNibLoading.h: Added methods to header

View file

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