To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=112395
------- Additional comments from [email protected] Wed Oct 6 16:03:03 +0000 2010 ------- everything up to revision 81f829e22ea3 looks good to me. except for this bit here: 7.50 @@ -947,7 +946,8 @@ 7.51 } 7.52 7.53 // remove invalid entries from kashida array 7.54 - aKashida.Remove( nCntKash, aKashida.Count() - nCntKash ); 7.55 + //FIXME Is it correct? 7.56 + aKashida.erase( aKashida.begin() + nCntKash, aKashida.end() - nCntKash ); 7.57 7.58 // 7.59 // TAKE CARE OF WEAK CHARACTERS: WE MUST FIND AN APPROPRIATE the second parameter to Remove is apparently the number of elements to remove. so "Remove ( n , Count() - n )" will remove elements from "n" up to "n + Count() - n", i.e. up to "Count()", i.e. until the end. the second parameter to erase should be just "aKashida.end()". --------------------------------------------------------------------- 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: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
