This commit is contained in:
hyatt%netscape.com 2000-08-23 07:18:58 +00:00
Родитель 23d87c9e6d
Коммит 072ffea226
6 изменённых файлов: 6 добавлений и 6 удалений

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

@ -436,7 +436,7 @@ nsBindingManager::PutXBLDocumentInfo(nsIXBLDocumentInfo* aDocumentInfo)
nsCOMPtr<nsIDocument> doc;
aDocumentInfo->GetDocument(getter_AddRefs(doc));
nsCOMPtr<nsIURI> uri(doc->GetDocumentURL());
nsCOMPtr<nsIURI> uri(getter_AddRefs(doc->GetDocumentURL()));
nsXPIDLCString str;
uri->GetSpec(getter_Copies(str));

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

@ -317,7 +317,7 @@ nsXBLStreamListener::Load(nsIDOMEvent* aEvent)
// Remove ourselves from the set of pending docs.
nsCOMPtr<nsIBindingManager> bindingManager;
doc->GetBindingManager(getter_AddRefs(bindingManager));
nsCOMPtr<nsIURI> uri(mBindingDocument->GetDocumentURL());
nsCOMPtr<nsIURI> uri(getter_AddRefs(mBindingDocument->GetDocumentURL()));
nsXPIDLCString str;
uri->GetSpec(getter_Copies(str));
bindingManager->RemoveLoadingDocListener(nsCAutoString(NS_STATIC_CAST(const char*, str)));

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

@ -207,7 +207,7 @@ nsXULPrototypeCache::PutXBLDocumentInfo(nsIXBLDocumentInfo* aDocumentInfo)
nsCOMPtr<nsIDocument> doc;
aDocumentInfo->GetDocument(getter_AddRefs(doc));
nsCOMPtr<nsIURI> uri(doc->GetDocumentURL());
nsCOMPtr<nsIURI> uri(getter_AddRefs(doc->GetDocumentURL()));
nsXPIDLCString str;
uri->GetSpec(getter_Copies(str));

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

@ -436,7 +436,7 @@ nsBindingManager::PutXBLDocumentInfo(nsIXBLDocumentInfo* aDocumentInfo)
nsCOMPtr<nsIDocument> doc;
aDocumentInfo->GetDocument(getter_AddRefs(doc));
nsCOMPtr<nsIURI> uri(doc->GetDocumentURL());
nsCOMPtr<nsIURI> uri(getter_AddRefs(doc->GetDocumentURL()));
nsXPIDLCString str;
uri->GetSpec(getter_Copies(str));

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

@ -317,7 +317,7 @@ nsXBLStreamListener::Load(nsIDOMEvent* aEvent)
// Remove ourselves from the set of pending docs.
nsCOMPtr<nsIBindingManager> bindingManager;
doc->GetBindingManager(getter_AddRefs(bindingManager));
nsCOMPtr<nsIURI> uri(mBindingDocument->GetDocumentURL());
nsCOMPtr<nsIURI> uri(getter_AddRefs(mBindingDocument->GetDocumentURL()));
nsXPIDLCString str;
uri->GetSpec(getter_Copies(str));
bindingManager->RemoveLoadingDocListener(nsCAutoString(NS_STATIC_CAST(const char*, str)));

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

@ -207,7 +207,7 @@ nsXULPrototypeCache::PutXBLDocumentInfo(nsIXBLDocumentInfo* aDocumentInfo)
nsCOMPtr<nsIDocument> doc;
aDocumentInfo->GetDocument(getter_AddRefs(doc));
nsCOMPtr<nsIURI> uri(doc->GetDocumentURL());
nsCOMPtr<nsIURI> uri(getter_AddRefs(doc->GetDocumentURL()));
nsXPIDLCString str;
uri->GetSpec(getter_Copies(str));