Adding do_QueryInterface() wrapper for nsCOMPtr carpool

This commit is contained in:
mcafee%netscape.com 1999-02-17 02:23:56 +00:00
Родитель 7f7e24bfd0
Коммит f9566a1c33
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -244,7 +244,7 @@ nsIEnumerator* nsBaseWidget::GetChildren()
delete children;
return nsnull;
}
nsCOMPtr<nsIWidget> widget ( currentChild );
nsCOMPtr<nsIWidget> widget ( do_QueryInterface(currentChild) );
if ( widget )
children->Append(widget);
}