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
@ -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…
Reference in New Issue
Block a user