To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114702





------- Additional comments from c...@openoffice.org Thu Sep 23 13:42:54 +0000 
2010 -------
assuming I'm not suffering under a brain fart, given:

01234567
fo;ba;ba

old code does...

nIndex = 2 // pos of first ;

: xub_StrLen nLastIndex = nIndex+1;
nLastIndex = 3

:for( nIndex = nLastIndex ; nIndex < nLen && pLine[nIndex] != ';'; nIndex++ )
:    ;
nIndex = 5

:if( nIndex - nLastIndex > 1 )
if 2 > 1

:OUString aAlias( pLine+nLastIndex, nIndex-nLastIndex-1, RTL_TEXTENCODING_UTF8 
);
OUString aAlias( pLine+3, 1, ...)
"b"

new code...

nIndex = 2

: xub_StrLen nLastIndex = nIndex+1;
nLastIndex = 3

:for( nIndex = nLastIndex ; nIndex < nLen && pLine[nIndex] != ';'; nIndex++ )
:    ;
nIndex = 5

:if( nIndex - nLastIndex )
if 2

:OUString aAlias( pLine+nLastIndex, nIndex-nLastIndex-1, RTL_TEXTENCODING_UTF8 
);
OUString aAlias( pLine+3, 2, ...)
"ba"

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to