mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-900 Fixed some compiler warnings
X-SVN-Rev: 7300
This commit is contained in:
parent
ecdf5e0a92
commit
c914380027
2 changed files with 7 additions and 6 deletions
|
@ -78,12 +78,12 @@ void EscapeTransliterator::registerIDs() {
|
|||
* Constructs an escape transliterator with the given ID and
|
||||
* parameters. See the class member documentation for details.
|
||||
*/
|
||||
EscapeTransliterator::EscapeTransliterator(const UnicodeString& ID,
|
||||
EscapeTransliterator::EscapeTransliterator(const UnicodeString& newID,
|
||||
const UnicodeString& _prefix, const UnicodeString& _suffix,
|
||||
int32_t _radix, int32_t _minDigits,
|
||||
UBool _grokSupplementals,
|
||||
EscapeTransliterator* adoptedSupplementalHandler) :
|
||||
Transliterator(ID, NULL)
|
||||
Transliterator(newID, NULL)
|
||||
{
|
||||
this->prefix = _prefix;
|
||||
this->suffix = _suffix;
|
||||
|
|
|
@ -118,10 +118,11 @@ void UnescapeTransliterator::registerIDs() {
|
|||
/**
|
||||
* Constructor. Takes the encoded spec array.
|
||||
*/
|
||||
UnescapeTransliterator::UnescapeTransliterator(const UnicodeString& ID,
|
||||
const UChar *spec) :
|
||||
Transliterator(ID, NULL) {
|
||||
this->spec = copySpec(spec);
|
||||
UnescapeTransliterator::UnescapeTransliterator(const UnicodeString& newID,
|
||||
const UChar *newSpec) :
|
||||
Transliterator(newID, NULL)
|
||||
{
|
||||
this->spec = copySpec(newSpec);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue