mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-5170 More RBBI with UText cleanup
X-SVN-Rev: 19594
This commit is contained in:
parent
4a1c753cf3
commit
e710052695
1 changed files with 8 additions and 20 deletions
|
@ -70,18 +70,12 @@ ubrk_open(UBreakIteratorType type,
|
|||
return 0;
|
||||
}
|
||||
|
||||
if (text != NULL) {
|
||||
UCharCharacterIterator *iter = 0;
|
||||
iter = new UCharCharacterIterator(text, textLength);
|
||||
if(iter == 0) {
|
||||
*status = U_MEMORY_ALLOCATION_ERROR;
|
||||
delete result;
|
||||
return 0;
|
||||
}
|
||||
result->adoptText(iter);
|
||||
}
|
||||
|
||||
return (UBreakIterator*)result;
|
||||
UBreakIterator *uBI = (UBreakIterator *)result;
|
||||
if (text != NULL) {
|
||||
ubrk_setText(uBI, text, textLength, status);
|
||||
}
|
||||
return uBI;
|
||||
}
|
||||
|
||||
|
||||
|
@ -111,17 +105,11 @@ ubrk_openRules( const UChar *rules,
|
|||
return 0;
|
||||
}
|
||||
|
||||
UBreakIterator *uBI = (UBreakIterator *)result;
|
||||
if (text != NULL) {
|
||||
UCharCharacterIterator *iter = 0;
|
||||
iter = new UCharCharacterIterator(text, textLength);
|
||||
if(iter == 0) {
|
||||
*status = U_MEMORY_ALLOCATION_ERROR;
|
||||
delete result;
|
||||
return 0;
|
||||
}
|
||||
result->adoptText(iter);
|
||||
ubrk_setText(uBI, text, textLength, status);
|
||||
}
|
||||
return (UBreakIterator *)result;
|
||||
return uBI;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue