mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-4967 Document the requirement to call reset() before calling layoutChars() again.
X-SVN-Rev: 19577
This commit is contained in:
parent
19230a3f00
commit
88ed19df34
1 changed files with 8 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
|
||||
/*
|
||||
*
|
||||
* (C) Copyright IBM Corp. 1998-2005 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1998-2006 - All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -314,7 +314,7 @@ public:
|
|||
|
||||
/**
|
||||
* This method will invoke the layout steps in their correct order by calling
|
||||
* the computeGlyphs, positionGlyphs and adjustGlyphPosition methods.. It will
|
||||
* the computeGlyphs, positionGlyphs and adjustGlyphPosition methods. It will
|
||||
* compute the glyph, character index and position arrays.
|
||||
*
|
||||
* @param chars - the input character context
|
||||
|
@ -328,8 +328,12 @@ public:
|
|||
*
|
||||
* @return the number of glyphs in the glyph array
|
||||
*
|
||||
* Note; the glyph, character index and position array can be accessed
|
||||
* using the getter method below.
|
||||
* Note: The glyph, character index and position array can be accessed
|
||||
* using the getter methods below.
|
||||
*
|
||||
* Note: If you call this method more than once, you must call the reset()
|
||||
* method first to free the glyph, character index and position arrays
|
||||
* allocated by the previous call.
|
||||
*
|
||||
* @stable ICU 2.8
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue