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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user