ICU-4521 Fix ambiguous argument
X-SVN-Rev: 27511
This commit is contained in:
parent
b932e68f4f
commit
00488c0908
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
*******************************************************************************
|
*******************************************************************************
|
||||||
*
|
*
|
||||||
* Copyright (C) 2004-2008, International Business Machines
|
* Copyright (C) 2004-2010, International Business Machines
|
||||||
* Corporation and others. All Rights Reserved.
|
* Corporation and others. All Rights Reserved.
|
||||||
*
|
*
|
||||||
*******************************************************************************
|
*******************************************************************************
|
||||||
@ -563,7 +563,7 @@ UnicodeString
|
|||||||
UXMLParser::scanContent(UErrorCode &status) {
|
UXMLParser::scanContent(UErrorCode &status) {
|
||||||
UnicodeString result;
|
UnicodeString result;
|
||||||
if (mXMLCharData.lookingAt(fPos, status)) {
|
if (mXMLCharData.lookingAt(fPos, status)) {
|
||||||
result = mXMLCharData.group(0, status);
|
result = mXMLCharData.group((int32_t)0, status);
|
||||||
// Normalize the new-lines. (Before char ref substitution)
|
// Normalize the new-lines. (Before char ref substitution)
|
||||||
mNewLineNormalizer.reset(result);
|
mNewLineNormalizer.reset(result);
|
||||||
result = mNewLineNormalizer.replaceAll(fOneLF, status);
|
result = mNewLineNormalizer.replaceAll(fOneLF, status);
|
||||||
@ -622,7 +622,7 @@ UXMLParser::replaceCharRefs(UnicodeString &s, UErrorCode &status) {
|
|||||||
// An unrecognized &entity; Leave it alone.
|
// An unrecognized &entity; Leave it alone.
|
||||||
// TODO: check that it really looks like an entity, and is not some
|
// TODO: check that it really looks like an entity, and is not some
|
||||||
// random & in the text.
|
// random & in the text.
|
||||||
replacement = mAmps.group(0, status);
|
replacement = mAmps.group((int32_t)0, status);
|
||||||
}
|
}
|
||||||
mAmps.appendReplacement(result, replacement, status);
|
mAmps.appendReplacement(result, replacement, status);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user