Differences From Artifact [c68b96f11d]:
- File src/OFWideCString.h — 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: 596) [annotate] [blame] [check-ins using]
To Artifact [a0db324d5d]:
- File
src/OFWideCString.h
— part of check-in
[e47ad44290]
at
2008-10-22 13:32:19
on branch trunk
— Reworked OFObject and added append(Wide)CString to OFString.
The reworked OFObject lets one test fail on the GNU runtime.
Unfortunately, I have no idea why... (user: js, size: 649) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
22 23 24 25 26 27 28 29 | - initWithWideCString: (wchar_t*)str; - (wchar_t*)wcString; - (size_t)length; - (OFString*)clone; - (int)compareTo: (OFString*)str; - (OFString*)append: (OFString*)str; @end | > | 22 23 24 25 26 27 28 29 30 | - initWithWideCString: (wchar_t*)str; - (wchar_t*)wcString; - (size_t)length; - (OFString*)clone; - (int)compareTo: (OFString*)str; - (OFString*)append: (OFString*)str; - (OFString*)appendWideCString: (const wchar_t*)str; @end |