mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Encode knob cell in archive
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5634 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ec738f36de
commit
5733733fee
1 changed files with 2 additions and 2 deletions
|
@ -219,8 +219,7 @@
|
|||
[decoder decodeValuesOfObjCTypes: "ffffi",
|
||||
&_minValue, &_maxValue, &_floatValue, &_altIncrementValue, &_isVertical];
|
||||
[decoder decodeValueOfObjCType: @encode(id) at: &_titleCell];
|
||||
|
||||
_knobCell = [NSCell new];
|
||||
[decoder decodeValueOfObjCType: @encode(id) at: &_knobCell];
|
||||
return self;
|
||||
}
|
||||
|
||||
|
@ -230,6 +229,7 @@
|
|||
[coder encodeValuesOfObjCTypes: "ffffi",
|
||||
&_minValue, &_maxValue, &_floatValue, &_altIncrementValue, &_isVertical];
|
||||
[coder encodeValueOfObjCType: @encode(id) at: &_titleCell];
|
||||
[coder encodeValueOfObjCType: @encode(id) at: &_knobCell];
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue