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:
Adam Fedor 2000-05-23 03:44:13 +00:00
parent b1de065f61
commit ad1f921d27
2 changed files with 8 additions and 2 deletions

View file

@ -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:

View file

@ -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;
}