mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-451 fix NullTransliterator virtual function hiding
X-SVN-Rev: 1729
This commit is contained in:
parent
795af33f57
commit
056697be0e
2 changed files with 0 additions and 17 deletions
|
@ -15,11 +15,6 @@ Transliterator* NullTransliterator::clone(void) const {
|
|||
return new NullTransliterator();
|
||||
}
|
||||
|
||||
int32_t NullTransliterator::transliterate(Replaceable&, int32_t,
|
||||
int32_t limit) const {
|
||||
return limit;
|
||||
}
|
||||
|
||||
void NullTransliterator::handleTransliterate(Replaceable& text, UTransPosition& offsets,
|
||||
UBool isIncremental) const {
|
||||
offsets.start = offsets.limit;
|
||||
|
|
|
@ -40,18 +40,6 @@ public:
|
|||
*/
|
||||
Transliterator* clone(void) const;
|
||||
|
||||
/**
|
||||
* Transliterates a segment of a string. <code>Transliterator</code> API.
|
||||
* @param text the string to be transliterated
|
||||
* @param start the beginning index, inclusive; <code>0 <= start
|
||||
* <= limit</code>.
|
||||
* @param limit the ending index, exclusive; <code>start <= limit
|
||||
* <= text.length()</code>.
|
||||
* @return the new limit index
|
||||
*/
|
||||
virtual int32_t transliterate(Replaceable &text,
|
||||
int32_t start, int32_t limit) const;
|
||||
|
||||
/**
|
||||
* Implements {@link Transliterator#handleTransliterate}.
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue