From 1916168c221470577086109bbc675e5611c5d8c7 Mon Sep 17 00:00:00 2001 From: "akkana%netscape.com" Date: Sat, 11 Dec 1999 00:37:11 +0000 Subject: [PATCH] Add a get() to fix build bustage --- rdf/content/src/nsXULKeyListener.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdf/content/src/nsXULKeyListener.cpp b/rdf/content/src/nsXULKeyListener.cpp index 901fabab3d0..2a89f9e2e24 100644 --- a/rdf/content/src/nsXULKeyListener.cpp +++ b/rdf/content/src/nsXULKeyListener.cpp @@ -1095,7 +1095,7 @@ NS_IMETHODIMP nsXULKeyListenerImpl::GetKeyBindingDocument(nsCAutoString& aURLStr nsCOMPtr supports; supports = NS_STATIC_CAST(nsISupports*, mKeyBindingTable->Get(&key)); - if (supports != mMissObject) { + if (supports.get() != mMissObject) { document = do_QueryInterface(supports); if (!document) { LoadKeyBindingDocument(uri, getter_AddRefs(document));