offapi: ParseResult documentation makes no sense

fix confusion between characters, code points and code units

Change-Id: I315735e103799ff2fb53e99442d500b998f50304
This commit is contained in:
Michael Stahl
2016-01-21 10:41:22 +01:00
parent e7279e5bab
commit 6c81b5fc68

View File

@@ -31,15 +31,15 @@ module com { module sun { module star { module i18n {
published struct ParseResult
{
/** Count of ignored leading whitespace, in code points, not
characters. */
/** Count of ignored leading whitespace, in UTF-16 code units, not
Unicode code points. */
long LeadingWhiteSpace;
/** Code point index of first unprocessed character. */
/** UTF-16 code unit index of first unprocessed character. */
long EndPos;
/** Number of characters (not code points) of the parsed token, not
including leading whitespace. */
/** Number of code points (not UTF-16 code units) of the parsed token,
not including leading whitespace. */
long CharLen;
/** Value of token in case of numeric. */