Differences From Artifact [0b1755f087]:
- File
src/exceptions/OFCopyFileFailedException.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: 1914) [annotate] [blame] [check-ins using]
To Artifact [8f083aa045]:
- File
src/exceptions/OFCopyFileFailedException.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: 1920) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
81 82 83 84 85 86 87 | - (int)errNo { return _errNo; } - (OFString*)sourcePath { | | | | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | - (int)errNo { return _errNo; } - (OFString*)sourcePath { OF_GETTER(_sourcePath, false) } - (OFString*)destinationPath { OF_GETTER(_destinationPath, false) } @end |