Fixed bug in GetElementOrParentByTagname

This commit is contained in:
cmanske%netscape.com 1999-07-28 01:37:51 +00:00
Родитель 2d07b9a72c
Коммит 89c5a45a40
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2010,7 +2010,7 @@ nsHTMLEditor::GetElementOrParentByTagName(const nsString &aTagName, nsIDOMNode *
break;
} else {
nsAutoString currentTagName;
aNode->GetNodeName(currentTagName);
currentNode->GetNodeName(currentTagName);
if (currentTagName.EqualsIgnoreCase(TagName))
{
bNodeFound = PR_TRUE;

Просмотреть файл

@ -2010,7 +2010,7 @@ nsHTMLEditor::GetElementOrParentByTagName(const nsString &aTagName, nsIDOMNode *
break;
} else {
nsAutoString currentTagName;
aNode->GetNodeName(currentTagName);
currentNode->GetNodeName(currentTagName);
if (currentTagName.EqualsIgnoreCase(TagName))
{
bNodeFound = PR_TRUE;