Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron

Landing on a CLOSED TREE
This commit is contained in:
Ehsan Akhgari
2011-10-17 10:59:28 -04:00
parent e1a204cad0
commit 478ad1a412
1968 changed files with 25639 additions and 25639 deletions

View File

@@ -134,12 +134,12 @@ nsresult nsUnicodeDecodeHelper::ConvertByMultiTable(
{
if ((aRangeArray[i].min <= *src) && (*src <= aRangeArray[i].max))
{
passRangeCheck = PR_TRUE;
passRangeCheck = true;
if (uScan(aScanClassArray[i], NULL, src,
reinterpret_cast<PRUint16*>(&med), srcLen,
(PRUint32 *)&bcr))
{
passScan = PR_TRUE;
passScan = true;
done = uMapCode((uTable*) aMappingTable[i],
static_cast<PRUint16>(med),
reinterpret_cast<PRUint16*>(dest));