NSScrollView and NSInterfaceStyle updates

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4399 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-06-12 08:36:38 +00:00
parent 185d419b30
commit d667a0b705
5 changed files with 112 additions and 26 deletions

View file

@ -240,11 +240,15 @@
- (void) encodeWithCoder: (NSCoder*)aCoder
{
[aCoder encodeConditionalObject: next_responder];
[aCoder encodeValueOfObjCType: @encode(NSInterfaceStyle)
at: &interface_style];
}
- (id) initWithCoder: (NSCoder*)aDecoder
{
next_responder = [aDecoder decodeObject];
[aDecoder decodeValueOfObjCType: @encode(NSInterfaceStyle)
at: &interface_style];
return self;
}