This commit is contained in:
hyatt%netscape.com 2000-08-14 18:52:47 +00:00
Родитель b23158d4f2
Коммит 4e565e1d33
2 изменённых файлов: 8 добавлений и 4 удалений

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

@ -141,9 +141,11 @@ struct nsXBLBindingRequest
nsCOMPtr<nsIPresShell> shell = getter_AddRefs(doc->GetShellAt(0));
if (shell) {
nsIFrame* childFrame;
shell->GetPrimaryFrameFor(mBoundElement, &childFrame);
nsCOMPtr<nsIDocumentObserver> obs(do_QueryInterface(shell));
obs->ContentRemoved(doc, parent, mBoundElement, index);
obs->ContentInserted(doc, parent, mBoundElement, index);
if (!childFrame)
obs->ContentInserted(doc, parent, mBoundElement, index);
}
}

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

@ -141,9 +141,11 @@ struct nsXBLBindingRequest
nsCOMPtr<nsIPresShell> shell = getter_AddRefs(doc->GetShellAt(0));
if (shell) {
nsIFrame* childFrame;
shell->GetPrimaryFrameFor(mBoundElement, &childFrame);
nsCOMPtr<nsIDocumentObserver> obs(do_QueryInterface(shell));
obs->ContentRemoved(doc, parent, mBoundElement, index);
obs->ContentInserted(doc, parent, mBoundElement, index);
if (!childFrame)
obs->ContentInserted(doc, parent, mBoundElement, index);
}
}