Move resizing change.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23079 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-06-18 00:41:02 +00:00
parent 2ab6ac351b
commit 5298a0ee49
2 changed files with 6 additions and 6 deletions

View file

@ -1,3 +1,9 @@
2006-06-17 20:39 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormNibWrapperLoader.m: Remove resizing change from
loadFileWrapper:withDocument: since it was moved to NSWindowTemplate
nibInstantiate.
2006-06-17 12:45 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormInternalViewEditor.m: Removed previous resize

View file

@ -236,8 +236,6 @@
// make the object deferred/visible...
obj = [o nibInstantiate];
[obj setFrame: [NSWindow frameRectForContentRect: [o windowRect] styleMask: [o windowStyle]]
display: NO];
[document setObject: obj isDeferred: isDeferred];
[document setObject: obj isVisibleAtLaunch: isVisible];
@ -369,10 +367,6 @@
[obj setTarget: nil];
[obj setAction: NULL];
}
else if([obj isKindOfClass: [NSView class]])
{
[self setSuperView: nil];
}
return obj;
}