@@ -54,11 +54,11 @@ double _doubleValue; } @property (retain) id objectValue; @property Class classValue; -@property bool boolValue; +@property (getter=isBoolValue) bool boolValue; @property char charValue; @property short shortValue; @property int intValue; @property long longValue; @property long long longLongValue; @@ -240,11 +240,11 @@ forKey: @"unsignedLongLongValue"]) && R([m setValue: [OFNumber numberWithFloat: 110] forKey: @"floatValue"]) && R([m setValue: [OFNumber numberWithDouble: 120] forKey: @"doubleValue"]) && - [m boolValue] == 0 && + [m isBoolValue] == 0 && [m charValue] == 10 && [m shortValue] == 20 && [m intValue] == 30 && [m longValue] == 40 && [m longLongValue] == 50 &&