Fixed missing do_QueryInterface that busted Linux build

This commit is contained in:
cmanske%netscape.com 1999-05-26 22:30:50 +00:00
Родитель 87b0695b45
Коммит fa58425b27
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1758,7 +1758,7 @@ nsHTMLEditor::GetSelectedElement(const nsString& aTagName, nsIDOMElement** aRetu
if (image)
{
nsCOMPtr<nsIDOMNode> parent;
nsCOMPtr<nsIDOMNode> current = selectedElement;
nsCOMPtr<nsIDOMNode> current = do_QueryInterface(selectedElement);
PRBool notDone = PR_TRUE;
do {
result = current->GetParentNode(getter_AddRefs(parent));

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

@ -1758,7 +1758,7 @@ nsHTMLEditor::GetSelectedElement(const nsString& aTagName, nsIDOMElement** aRetu
if (image)
{
nsCOMPtr<nsIDOMNode> parent;
nsCOMPtr<nsIDOMNode> current = selectedElement;
nsCOMPtr<nsIDOMNode> current = do_QueryInterface(selectedElement);
PRBool notDone = PR_TRUE;
do {
result = current->GetParentNode(getter_AddRefs(parent));