ICU-451 fix NullTransliterator virtual function hiding
X-SVN-Rev: 1729
This commit is contained in:
parent
795af33f57
commit
056697be0e
@ -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…
Reference in New Issue
Block a user