Differences From Artifact [d6f7c115da]:
- File src/OFConstWideCString.m — part of check-in [7b15048e25] at 2008-10-11 20:26:22 on branch trunk — Move length from base string class to subclasses & others. (user: js, size: 847) [annotate] [blame] [check-ins using]
To Artifact [68175f182a]:
- File src/OFConstWideCString.m — part of check-in [62abf39400] at 2008-10-25 22:25:50 on branch trunk — newWithFooString -> newAsFooString. (user: js, size: 845) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
37 38 39 40 41 42 43 | - (size_t)length { return length; } - (OFString*)clone { | | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | - (size_t)length { return length; } - (OFString*)clone { return [OFString newAsConstWideCString: string]; } - (int)compareTo: (OFString*)str { return wcscmp(string, [str wcString]); } @end |