1) Add a RemoveChild() method to nsIWebshell.
2) nsWebshell::Destroy() calls this method on its parent to remove itself from the parent's child list.
3) Call nsWebshell::Destroy() from nsHTMLFrameInnerFrame's detructor.
This commit is contained in:
nisheeth%netscape.com 1999-05-05 00:10:33 +00:00
Родитель 1eb1c32e00
Коммит 9174c0316f
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -262,6 +262,11 @@ public:
*/
NS_IMETHOD AddChild(nsIWebShell* aChild) = 0;
/**
* Remove a child WebShell.
*/
NS_IMETHOD RemoveChild(nsIWebShell* aChild) = 0;
/**
* Return the child WebShell at the requested index.
*/