зеркало из https://github.com/mozilla/gecko-dev.git
Bug 212272: Switch some Substring users over to String(Begins|Ends)With. r=dwitte, sr=bzbarsky
This commit is contained in:
Родитель
8448a8a004
Коммит
7d8ac667d3
|
@ -417,7 +417,7 @@ inDOMView::GetCellText(PRInt32 row, const PRUnichar *colID, nsAString& _retval)
|
|||
} else if (col.Equals(NS_LITERAL_STRING("colNodeValue")))
|
||||
domNode->GetNodeValue(_retval);
|
||||
else {
|
||||
if (Substring(col, 0, 4).Equals(NS_LITERAL_STRING("col@"))) {
|
||||
if (StringBeginsWith(col, NS_LITERAL_STRING("col@"))) {
|
||||
nsCOMPtr<nsIDOMElement> el = do_QueryInterface(node->node);
|
||||
if (el) {
|
||||
nsAutoString attr;
|
||||
|
|
Загрузка…
Ссылка в новой задаче