mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 00:43:32 +00:00
ICU-6418 Fix incorrect init of Break Transliterator, which is part of Thai-Latin
X-SVN-Rev: 24342
This commit is contained in:
parent
afb75502d7
commit
b422a026dd
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,8 @@ static const UChar SPACE = 32; // ' '
|
|||
* '}'.
|
||||
*/
|
||||
BreakTransliterator::BreakTransliterator(UnicodeFilter* adoptedFilter) :
|
||||
Transliterator(UNICODE_STRING("Any-BreakInternal", 17), adoptedFilter) {
|
||||
Transliterator(UNICODE_STRING("Any-BreakInternal", 17), adoptedFilter),
|
||||
fInsertion(SPACE) {
|
||||
bi = NULL;
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
boundaries = new UVector32(status);
|
||||
|
|
Loading…
Add table
Reference in a new issue