This commit is contained in:
sspitzer%netscape.com 2000-05-18 19:58:27 +00:00
Родитель d64e48579e
Коммит 9c26e4ab00
2 изменённых файлов: 4 добавлений и 0 удалений

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

@ -296,6 +296,8 @@ nsXBLService::GetContentList(nsIContent* aContent, nsISupportsArray** aResult, n
nsCOMPtr<nsIDocument> document;
aContent->GetDocument(*getter_AddRefs(document));
nsCOMPtr<nsIBindingManager> bindingManager;
NS_ASSERTION(document, "no document");
if (!document) return NS_ERROR_FAILURE;
document->GetBindingManager(getter_AddRefs(bindingManager));
nsCOMPtr<nsIXBLBinding> binding;

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

@ -296,6 +296,8 @@ nsXBLService::GetContentList(nsIContent* aContent, nsISupportsArray** aResult, n
nsCOMPtr<nsIDocument> document;
aContent->GetDocument(*getter_AddRefs(document));
nsCOMPtr<nsIBindingManager> bindingManager;
NS_ASSERTION(document, "no document");
if (!document) return NS_ERROR_FAILURE;
document->GetBindingManager(getter_AddRefs(bindingManager));
nsCOMPtr<nsIXBLBinding> binding;