pkgsrc-ng/www/nvu/patches/patch-xpcom_ds_nsInterfaceHashtable.h
2013-09-26 17:14:40 +02:00

23 lines
729 B
C

$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<KeyClass,Interface>
(KeyType aKey, UserDataType* pInterface) const
{
typename nsBaseHashtable<KeyClass, nsCOMPtr<Interface>, Interface*>::EntryType* ent =
- GetEntry(aKey);
+ this->GetEntry(aKey);
if (ent)
{
@@ -139,7 +139,7 @@ nsInterfaceHashtable<KeyClass,Interface>
(KeyType aKey, PRBool* aFound) const
{
typename nsBaseHashtable<KeyClass, nsCOMPtr<Interface>, Interface*>::EntryType* ent =
- GetEntry(aKey);
+ this->GetEntry(aKey);
if (ent)
{