1 --- misc/mozilla/xpcom/glue/nsBaseHashtable.h 2005-09-27 16:44:20.000000000 +0100
2 +++ misc/build/mozilla/xpcom/glue/nsBaseHashtable.h 2012-02-18 18:43:55.386109066 +0000
5 PRBool Get(KeyType aKey, UserDataType* pData) const
7 - EntryType* ent = GetEntry(aKey);
8 + EntryType* ent = this->GetEntry(aKey);
14 PRBool Put(KeyType aKey, UserDataType aData)
16 - EntryType* ent = PutEntry(aKey);
17 + EntryType* ent = this->PutEntry(aKey);
22 * remove the data for the associated key
23 * @param aKey the key to remove from the hashtable
25 - void Remove(KeyType aKey) { RemoveEntry(aKey); }
26 + void Remove(KeyType aKey) { this->RemoveEntry(aKey); }
29 * function type provided by the application for enumeration.
30 --- misc/mozilla/xpcom/glue/nsClassHashtable.h 2005-08-11 20:42:37.000000000 +0100
31 +++ misc/build/mozilla/xpcom/glue/nsClassHashtable.h 2012-02-18 18:40:32.810109050 +0000
33 nsClassHashtable<KeyClass,T>::Get(KeyType aKey, T** retVal) const
35 typename nsBaseHashtable<KeyClass,nsAutoPtr<T>,T*>::EntryType* ent =
37 + this->GetEntry(aKey);
41 --- misc/mozilla/xpcom/glue/nsInterfaceHashtable.h 2005-08-11 20:42:48.000000000 +0100
42 +++ misc/build/mozilla/xpcom/glue/nsInterfaceHashtable.h 2012-02-18 18:43:01.794109091 +0000
44 (KeyType aKey, UserDataType* pInterface) const
46 typename nsBaseHashtable<KeyClass, nsCOMPtr<Interface>, Interface*>::EntryType* ent =
48 + this->GetEntry(aKey);
53 (KeyType aKey, PRBool* aFound) const
55 typename nsBaseHashtable<KeyClass, nsCOMPtr<Interface>, Interface*>::EntryType* ent =
57 + this->GetEntry(aKey);
61 --- misc/mozilla/xpcom/glue/nsRefPtrHashtable.h 2005-08-11 20:42:51.000000000 +0100
62 +++ misc/build/mozilla/xpcom/glue/nsRefPtrHashtable.h 2012-02-18 19:02:20.634109082 +0000
64 (KeyType aKey, PRBool* aFound) const
66 typename nsBaseHashtable<KeyClass, nsRefPtr<RefPtr>, RefPtr*>::EntryType* ent =
68 + this->GetEntry(aKey);