Fixing harpoon.

This commit is contained in:
hyatt%netscape.com 2000-08-14 04:29:54 +00:00
parent e215822aef
commit 641a62a2b5
2 changed files with 2 additions and 2 deletions

View File

@ -1032,7 +1032,7 @@ nsXBLService::FetchBindingDocument(nsIContent* aBoundElement, nsIURI* aURI, cons
nsCOMPtr<nsIAtom> tagName;
aBoundElement->GetTag(*getter_AddRefs(tagName));
if (tagName != kScrollbarAtom) {
if (tagName.get() != kScrollbarAtom) {
// We can be asynchronous
nsXBLStreamListener* xblListener = new nsXBLStreamListener(listener, boundDoc, doc);

View File

@ -1032,7 +1032,7 @@ nsXBLService::FetchBindingDocument(nsIContent* aBoundElement, nsIURI* aURI, cons
nsCOMPtr<nsIAtom> tagName;
aBoundElement->GetTag(*getter_AddRefs(tagName));
if (tagName != kScrollbarAtom) {
if (tagName.get() != kScrollbarAtom) {
// We can be asynchronous
nsXBLStreamListener* xblListener = new nsXBLStreamListener(listener, boundDoc, doc);