* Source/GSNibLoading.m: Make the log ino debug in awakeFromNib

* Source/NSApplication.m: Allow modal to end multiple times, per spec
        there is no exception for doing this.
        * Source/NSPasteboard.m: Allow multiple threads in pasteboard
        communication.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27306 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2008-12-16 18:59:26 +00:00
parent e9aba06b34
commit 21cf915c13
4 changed files with 15 additions and 3 deletions

View file

@ -815,7 +815,7 @@ static BOOL _isInInterfaceBuilder = NO;
- (void) awakeFromNib
{
NSLog(@"Called awakeFromNib on an NSCustomObject instance: %@", self);
NSDebugLog(@"Called awakeFromNib on an NSCustomObject instance: %@", self);
if([_object respondsToSelector: @selector(awakeFromNib)])
{
[_object awakeFromNib];