Bug 226439. Convert Seamonkey to EqualsLiteral. rs=darin

git-svn-id: svn://10.0.0.236/trunk@156785 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
roc+%cs.cmu.edu
2004-05-22 22:15:22 +00:00
parent 3c30331a54
commit bdc7e5f59b
170 changed files with 708 additions and 708 deletions

View File

@@ -930,10 +930,10 @@ mozSqlResult::SetCellValue(PRInt32 row, nsITreeColumn* col, const nsAString& val
Cell* cell = buffer->mCells[columnIndex];
if (value.Equals(NS_LITERAL_STRING("true"))) {
if (value.EqualsLiteral("true")) {
cell->mBool = PR_TRUE;
}
else if (value.Equals(NS_LITERAL_STRING("false"))) {
else if (value.EqualsLiteral("false")) {
cell->mBool = PR_FALSE;
}