Differences From Artifact [ba006ade87]:
- File
src/exceptions/OFSetOptionFailedException.m
— part of check-in
[d9ddc4d06e]
at
2013-02-13 23:10:35
on branch trunk
— Don't cache the description of exceptions.
This was pretty pointless, as it's usually only used once. (user: js, size: 1445) [annotate] [blame] [check-ins using]
To Artifact [5401f8aab0]:
- File
src/exceptions/OFSetOptionFailedException.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: 1448) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
65 66 67 68 69 70 71 | { return [OFString stringWithFormat: @"Setting an option in class %@ failed!", _inClass]; } - (OFStream*)stream { | | | 65 66 67 68 69 70 71 72 73 74 | { return [OFString stringWithFormat: @"Setting an option in class %@ failed!", _inClass]; } - (OFStream*)stream { OF_GETTER(_stream, false) } @end |