Files
pkgsrc-ng/devel/xulrunner192/patches/patch-xpcom_glue_nsClassHashtable.h
2013-09-26 17:14:40 +02:00

14 lines
427 B
C

$NetBSD: patch-xpcom_glue_nsClassHashtable.h,v 1.1 2012/11/18 01:55:52 joerg Exp $
--- xpcom/glue/nsClassHashtable.h.orig 2012-11-17 15:47:45.000000000 +0000
+++ xpcom/glue/nsClassHashtable.h
@@ -98,7 +98,7 @@ PRBool
nsClassHashtable<KeyClass,T>::Get(KeyType aKey, T** retVal) const
{
typename nsBaseHashtable<KeyClass,nsAutoPtr<T>,T*>::EntryType* ent =
- GetEntry(aKey);
+ this->GetEntry(aKey);
if (ent)
{