mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 21:20:38 +00:00
encoding/decoding methods
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@11617 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5cc9449221
commit
028b1c96f1
2 changed files with 29 additions and 0 deletions
|
@ -660,5 +660,29 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Encoding/Decoding
|
||||
*/
|
||||
|
||||
- (void) encodeWithCoder: (NSCoder*)aCoder
|
||||
{
|
||||
[super encodeWithCoder: aCoder];
|
||||
|
||||
/* Nothing else to encode in NSTableHeaderView:
|
||||
- _tableView is set by the parent NSTableView
|
||||
- _resizedColumn is reset on decoding anyway
|
||||
*/
|
||||
}
|
||||
|
||||
- (id) initWithCoder: (NSCoder*)aDecoder
|
||||
{
|
||||
self = [super initWithCoder: aDecoder];
|
||||
_tableView = nil;
|
||||
_resizedColumn = -1;
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue