Store new ivar for NSClipView

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@8035 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2000-11-05 16:24:45 +00:00
parent 21e88fbeb4
commit 7915c61aa7

View file

@ -519,6 +519,7 @@ void __dummy_GMAppKit_functionForLinking() {}
[archiver encodeObject:[self documentView] withName:@"documentView"];
[archiver encodeBOOL:[self copiesOnScroll] withName:@"copiesOnScroll"];
[archiver encodeBOOL:[self drawsBackground] withName:@"drawsBackground"];
[archiver encodeObject:[self backgroundColor] withName:@"backgroundColor"];
}
@ -528,6 +529,7 @@ void __dummy_GMAppKit_functionForLinking() {}
[self setDocumentView:[unarchiver decodeObjectWithName:@"documentView"]];
[self setCopiesOnScroll:[unarchiver decodeBOOLWithName:@"copiesOnScroll"]];
[self setDrawsBackground:[unarchiver decodeBOOLWithName:@"drawsBackground"]];
[self setBackgroundColor:[unarchiver decodeObjectWithName:@"backgroundColor"]];
return self;
}