Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones

This commit is contained in:
Michael Wu
2011-09-28 23:19:26 -07:00
parent d91d87f072
commit 0fe7772ece
3264 changed files with 30122 additions and 30123 deletions

View File

@@ -58,7 +58,7 @@ public:
uScanClassID aScanClass,
uShiftInTable * aShiftInTable,
uMappingTable * aMappingTable,
PRBool aErrorSignal = PR_FALSE);
bool aErrorSignal = false);
/**
* Converts data using a set of lookup tables.
@@ -66,14 +66,14 @@ public:
static nsresult ConvertByMultiTable(const char * aSrc, PRInt32 * aSrcLength,
PRUnichar * aDest, PRInt32 * aDestLength, PRInt32 aTableCount,
const uRange * aRangeArray, uScanClassID * aScanClassArray,
uMappingTable ** aMappingTable, PRBool aErrorSignal = PR_FALSE);
uMappingTable ** aMappingTable, bool aErrorSignal = false);
/**
* Converts data using a fast lookup table.
*/
static nsresult ConvertByFastTable(const char * aSrc, PRInt32 * aSrcLength,
PRUnichar * aDest, PRInt32 * aDestLength, const PRUnichar * aFastTable,
PRInt32 aTableSize, PRBool aErrorSignal);
PRInt32 aTableSize, bool aErrorSignal);
/**
* Create a cache-like fast lookup table from a normal one.