ICU-6418 Fix incorrect init of Break Transliterator, which is part of Thai-Latin

X-SVN-Rev: 24342
This commit is contained in:
Andy Heninger 2008-07-03 07:13:04 +00:00
parent afb75502d7
commit b422a026dd

View File

@ -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);