mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-474 make it to compile on HPUX 10.
X-SVN-Rev: 2213
This commit is contained in:
parent
d402de2e4e
commit
8f012e9004
1 changed files with 5 additions and 1 deletions
|
@ -158,7 +158,11 @@ Transliterator& Transliterator::operator=(const Transliterator& other) {
|
|||
int32_t Transliterator::transliterate(Replaceable& text,
|
||||
int32_t start, int32_t limit) const {
|
||||
|
||||
UTransPosition offsets = { start, limit, start, limit };
|
||||
UTransPosition offsets;
|
||||
offsets.contextStart= start;
|
||||
offsets.contextLimit = limit;
|
||||
offsets.start = start;
|
||||
offsets.limit = limit;
|
||||
handleTransliterate(text, offsets, FALSE);
|
||||
return offsets.limit;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue