mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Use method calls in [initWithCoder:] to get fontification correct.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@15548 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9097568682
commit
0265583240
1 changed files with 2 additions and 2 deletions
|
@ -338,9 +338,9 @@ static NSFont *_leafFont;
|
|||
[super initWithCoder: aDecoder];
|
||||
|
||||
[aDecoder decodeValueOfObjCType: @encode(BOOL) at: &tmp];
|
||||
_browsercell_is_leaf = tmp;
|
||||
[self setLeaf: tmp];
|
||||
[aDecoder decodeValueOfObjCType: @encode(BOOL) at: &tmp];
|
||||
_browsercell_is_loaded = tmp;
|
||||
[self setLoaded: tmp];
|
||||
[aDecoder decodeValueOfObjCType: @encode(id) at: &_alternateImage];
|
||||
|
||||
return self;
|
||||
|
|
Loading…
Reference in a new issue