mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-20 15:46:47 +00:00
* Source/GSNibLoader.m: Correct the message to indicate an issue
loading a nib, not a gorm, file. * Source/GSNibLoading.m: Uncomment the release in the dealloc method. * Source/NSApplication.m: Restrict the icon size to the size of the miniwindow if it's larger, but don't expand it, if it's smaller. * Source/NSLayoutManager.m: -initWithCoder: Initialize when loading a nib in the same way that we initialize when loading a gorm file. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27775 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
900209df53
commit
d0d81bf1b1
5 changed files with 27 additions and 5 deletions
|
@ -2292,11 +2292,12 @@ no_soft_invalidation:
|
|||
|
||||
if ([aDecoder allowsKeyedCoding])
|
||||
{
|
||||
/*
|
||||
int i;
|
||||
id delegate = [aDecoder decodeObjectForKey: @"NSDelegate"];
|
||||
int flags;
|
||||
NSArray *array = [aDecoder decodeObjectForKey: @"NSTextContainers"];
|
||||
NSTextStorage *storage = [aDecoder decodeObjectForKey: @"NSTextStorage"];
|
||||
id delegate = [aDecoder decodeObjectForKey: @"NSDelegate"];
|
||||
|
||||
if ([aDecoder containsValueForKey: @"NSLMFlags"])
|
||||
{
|
||||
|
@ -2311,7 +2312,7 @@ no_soft_invalidation:
|
|||
{
|
||||
[self addTextContainer: [array objectAtIndex: i]];
|
||||
}
|
||||
|
||||
*/
|
||||
return self;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue