use new float wrappers

This commit is contained in:
Riccardo Mottola 2021-01-10 18:25:39 +01:00
parent a150e52b18
commit 48c9317734

View file

@ -1894,8 +1894,8 @@
{
[aDecoder decodeValueOfObjCType: @encode(id) at: &_sound];
[aDecoder decodeValueOfObjCType: @encode(id) at: &_backgroundColor];
[aDecoder decodeValueOfObjCType: @encode(float) at: &_delayInterval];
[aDecoder decodeValueOfObjCType: @encode(float) at: &_repeatInterval];
_delayInterval = [aDecoder decodeFloat];
_repeatInterval = [aDecoder decodeFloat];
_bezel_style = (NSBezelStyle)[aDecoder decodeUInteger];
_gradient_type = (NSGradientType)[aDecoder decodeUInteger];
_image_dims_when_disabled = [aDecoder decodeBool];