mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 03:44:13 -04:00
23 lines
729 B
C
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)
|
|
{
|