mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
Fix NSScrollView unarchiving.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6607 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b1de065f61
commit
ad1f921d27
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2000-05-12 Georg Fleischmann
|
||||
|
||||
* gui/Model/GMAppKit.m
|
||||
([NSScrollView(GMArchiverMethods) -initWithModelUnarchiver:]):
|
||||
move unarchiving of backgroundColor behind documentView
|
||||
|
||||
2000-05-20 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/gnustep/gui/NSText.h:
|
||||
|
|
|
@ -489,8 +489,6 @@ void __dummy_GMAppKit_functionForLinking() {}
|
|||
|
||||
[self setContentView: AUTORELEASE([NSClipView new])];
|
||||
|
||||
[self setBackgroundColor:
|
||||
[unarchiver decodeObjectWithName: @"backgroundColor"]];
|
||||
[self setBorderType:
|
||||
[unarchiver decodeIntWithName: @"borderType"]];
|
||||
[self setHasHorizontalScroller:
|
||||
|
@ -499,6 +497,8 @@ void __dummy_GMAppKit_functionForLinking() {}
|
|||
[unarchiver decodeBOOLWithName: @"hasVerticalScroller"]];
|
||||
[self setDocumentView:
|
||||
[unarchiver decodeObjectWithName: @"documentView"]];
|
||||
[self setBackgroundColor:
|
||||
[unarchiver decodeObjectWithName: @"backgroundColor"]];
|
||||
|
||||
return self;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue