$NetBSD: patch-xpcom_ds_nsInterfaceHashtable.h,v 1.1 2013/03/24 16:45:55 joerg Exp $ --- xpcom/ds/nsInterfaceHashtable.h.orig 2003-12-29 13:22:49.000000000 +0000 +++ xpcom/ds/nsInterfaceHashtable.h @@ -111,7 +111,7 @@ nsInterfaceHashtable (KeyType aKey, UserDataType* pInterface) const { typename nsBaseHashtable, Interface*>::EntryType* ent = - GetEntry(aKey); + this->GetEntry(aKey); if (ent) { @@ -139,7 +139,7 @@ nsInterfaceHashtable (KeyType aKey, PRBool* aFound) const { typename nsBaseHashtable, Interface*>::EntryType* ent = - GetEntry(aKey); + this->GetEntry(aKey); if (ent) {