Differences From Artifact [3a90c3abbf]:
- File src/OFXMLCDATA.m — part of check-in [e40729d406] at 2013-02-12 18:22:15 on branch trunk — Prefix all ivars with an underscore. (user: js, size: 2420) [annotate] [blame] [check-ins using]
To Artifact [23c76edb90]:
- File
src/OFXMLCDATA.m
— part of check-in
[c5ef582958]
at
2013-03-04 17:20:15
on branch trunk
— Replace BOOL with bool.
The only places where BOOL is left are those where they are required by
the ABI. (user: js, size: 2423) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
64 65 66 67 68 69 70 | [self release]; @throw e; } return self; } | | | | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | [self release]; @throw e; } return self; } - (bool)isEqual: (id)object { OFXMLCDATA *CDATA; if (![object isKindOfClass: [OFXMLCDATA class]]) return false; CDATA = object; return ([CDATA->_CDATA isEqual: _CDATA]); } - (uint32_t)hash |
︙ | ︙ |